Bashir Gulistani commited on
Commit
d6b38ba
·
unverified ·
1 Parent(s): 9c1e24e

Add files via upload

Browse files
Files changed (1) hide show
  1. Dockerfile.txt +9 -0
Dockerfile.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /opt/app
4
+ COPY . .
5
+ RUN pip install --no-cache-dir -r /opt/app/requirements.txt
6
+ EXPOSE 7860
7
+ ENV GRADIO_SERVER_NAME="0.0.0.0"
8
+
9
+ CMD ["python", "app.py"]