mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
change order Dockerfile
Signed-off-by: Lukas Pol <lukaspaespol@gmail.com>
This commit is contained in:
parent
2219321e4e
commit
a0f93700e2
1 changed files with 6 additions and 7 deletions
|
@ -3,6 +3,11 @@ FROM ruby:2.6.5
|
|||
# install nodejs / libdev / postgres-client
|
||||
RUN apt-get update -qq && apt-get install -y nodejs libpq-dev postgresql-client
|
||||
|
||||
## install yarn
|
||||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||
&& apt-get update && apt-get install -y yarn && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN mkdir /myapp
|
||||
WORKDIR /myapp
|
||||
COPY Gemfile /myapp/Gemfile
|
||||
|
@ -13,14 +18,8 @@ RUN gem install bundler:2.0.2
|
|||
RUN bundle install
|
||||
COPY . /myapp
|
||||
|
||||
## install yarn
|
||||
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
|
||||
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
|
||||
&& apt-get update && apt-get install -y yarn && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
## Add Endpoint
|
||||
COPY entrypoint.sh /usr/bin/
|
||||
RUN chmod +x /usr/bin/entrypoint.sh
|
||||
ENTRYPOINT ["entrypoint.sh"]
|
||||
EXPOSE 3000
|
||||
EXPOSE 3000
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue