Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +9 -1
Dockerfile
CHANGED
@@ -1 +1,9 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"]
|