We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d18c2 commit a3323f6Copy full SHA for a3323f6
2 files changed
Dockerfile
@@ -4,12 +4,13 @@ FROM python:2.7
4
# Set the application directory
5
WORKDIR /app
6
7
-# Copy our code from the current folder to /app inside the container
8
-ADD . /app
9
-
10
# Install our requirements.txt
+ADD requirements.txt /app/requirements.txt
11
RUN pip install -r requirements.txt
12
+# Copy our code from the current folder to /app inside the container
+ADD . /app
13
+
14
# Make port 5000 available for links and/or publish
15
EXPOSE 80
16
docker-compose-test.yml docker-compose.test.ymldocker-compose-test.yml renamed to docker-compose.test.yml
0 commit comments