Malloh commited on
Commit
d5739b6
·
verified ·
1 Parent(s): 84703b9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ WORKDIR /app
3
+ COPY main.py .
4
+ RUN chmod -R 777 /app
5
+ ENV SERVER_PORT=7860
6
+ CMD ["python", "main.py"]