Spaces:
Sleeping
Sleeping
Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +5 -6
Dockerfile
CHANGED
|
@@ -1,14 +1,13 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
-
|
| 5 |
-
RUN pip install --no-cache-dir
|
| 6 |
|
| 7 |
COPY . .
|
| 8 |
|
| 9 |
ENV STATE_DIR=/tmp/openclaw-state
|
| 10 |
-
ENV PORT=
|
| 11 |
-
|
| 12 |
-
EXPOSE 10000
|
| 13 |
|
| 14 |
-
CMD ["python", "
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
+
|
| 5 |
+
RUN pip install --no-cache-dir gradio==4.44.1 flask
|
| 6 |
|
| 7 |
COPY . .
|
| 8 |
|
| 9 |
ENV STATE_DIR=/tmp/openclaw-state
|
| 10 |
+
ENV PORT=7860
|
| 11 |
+
EXPOSE 7860
|
|
|
|
| 12 |
|
| 13 |
+
CMD ["python", "app.py"]
|