diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..da73878 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python +WORKDIR /app +COPY . . +RUN pip install -r requirements.txt +CMD ["waitress-serve", "--listen=0.0.0.0:8080", "app:app"] +EXPOSE 8080