soiz commited on
Commit
99f7aee
·
verified ·
1 Parent(s): 1e45571

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -1 +1,7 @@
1
- RUN gunicorn app:app --bind 0.0.0.0:7860
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+ WORKDIR /app
4
+ COPY . /app
5
+
6
+
7
+ CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]