We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55d8b91 commit 99fe466Copy full SHA for 99fe466
Dockerfile
@@ -9,10 +9,6 @@ EXPOSE 8080
9
10
SHELL ["/bin/bash", "-c"]
11
12
-WORKDIR /app
13
-ADD Gemfile Gemfile.lock /app/
14
-RUN gem install bundler:$BUNDLER_VERSION && bundle install
15
-
16
RUN apt-get update \
17
&& apt-get install -y --no-install-recommends \
18
supervisor locales nodejs vim nano \
@@ -39,6 +35,10 @@ RUN curl -fsSLO "$SUPERCRONIC_URL" \
39
35
&& mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
40
36
&& ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic
41
37
38
+WORKDIR /app
+ADD Gemfile Gemfile.lock /app/
+RUN gem install bundler:$BUNDLER_VERSION && bundle install
+
42
ADD docker/supervisord.conf /etc/supervisord.conf
43
ADD docker/start.sh /app/
44
ADD . /app
0 commit comments