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.
2 parents 3a3a979 + a1ae13d commit 1ff1a20Copy full SHA for 1ff1a20
Dockerfile
@@ -26,9 +26,9 @@ RUN ln -s /app /usr/src/app/ext \
26
&& cd /usr/src/app \
27
&& pip3 install -r requirements.txt
28
29
-ONBUILD ADD . /app/
30
-ONBUILD RUN touch /app/__init__.py
+ONBUILD ADD Dockerfile requirement[s].txt /app/
31
ONBUILD RUN cd /app/ \
32
&& if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
33
34
-
+ONBUILD ADD . /app/
+ONBUILD RUN touch /app/__init__.py
0 commit comments