Skip to content

Commit

Permalink
fixed dockerize
Browse files Browse the repository at this point in the history
  • Loading branch information
akmamun authored Oct 27, 2019
1 parent 0bc1e8b commit 42aa2b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from alpine:latest
FROM python:3.7-alpine

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

WORKDIR /app
WORKDIR /src

COPY . /app
COPY . .

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

EXPOSE 5000

Expand Down

0 comments on commit 42aa2b2

Please sign in to comment.