Skip to content

Commit 42aa2b2

Browse files
authored
fixed dockerize
1 parent 0bc1e8b commit 42aa2b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
from alpine:latest
1+
FROM python:3.7-alpine
22

33
RUN apk add --no-cache python3-dev \
44
&& pip3 install --upgrade pip
55

6-
WORKDIR /app
6+
WORKDIR /src
77

8-
COPY . /app
8+
COPY . .
99

10-
RUN pip3 --no-cache-dir install -r requirements.txt
10+
RUN pip install -r requirements.txt
1111

1212
EXPOSE 5000
1313

0 commit comments

Comments
 (0)