Skip to content

Commit 87abb1d

Browse files
authored
Create Dockerfile
1 parent ddad45b commit 87abb1d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM python:3.7.5-slim
2+
3+
COPY . /app
4+
WORKDIR /app
5+
6+
EXPOSE 5000
7+
ENTRYPOINT ["waitress-serve"]
8+
CMD ["--port=5000", "app:app"]

0 commit comments

Comments
 (0)