Yusif commited on
Commit
32e1c94
·
verified ·
1 Parent(s): f47c2df

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.12
2
+
3
+ ADD app.py .
4
+
5
+ RUN pip install gradio
6
+
7
+ CMD ["python", "./main.py"]