Skip to content

Commit

Permalink
Created dockerfile for this project
Browse files Browse the repository at this point in the history
  • Loading branch information
Logan1x committed Sep 14, 2020
1 parent 7987aa7 commit 40f0423
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from alpine:latest

RUN apk add --no-cache python3-dev
RUN apk add --update py-pip

WORKDIR /app

COPY . /app

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

EXPOSE 5000

ENTRYPOINT ["python3"]

CMD ["hello.py"]

0 comments on commit 40f0423

Please sign in to comment.