Rooni commited on
Commit
9ab6280
·
verified ·
1 Parent(s): 8c5a9d0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -1
Dockerfile CHANGED
@@ -1 +1,9 @@
1
- RUN pip install diffusers transformers accelerate
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app
6
+
7
+ RUN pip install --no-cache-dir diffusers transformers accelerate gradio
8
+
9
+ CMD ["python", "app.py"]