Skip to content

Commit a3323f6

Browse files
committed
updated dockerfile and docker-compose
1 parent b5d18c2 commit a3323f6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ FROM python:2.7
44
# Set the application directory
55
WORKDIR /app
66

7-
# Copy our code from the current folder to /app inside the container
8-
ADD . /app
9-
107
# Install our requirements.txt
8+
ADD requirements.txt /app/requirements.txt
119
RUN pip install -r requirements.txt
1210

11+
# Copy our code from the current folder to /app inside the container
12+
ADD . /app
13+
1314
# Make port 5000 available for links and/or publish
1415
EXPOSE 80
1516

File renamed without changes.

0 commit comments

Comments
 (0)