Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM
|
| 2 |
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install -r requirements.txt
|
|
@@ -14,4 +14,4 @@ EXPOSE 8765
|
|
| 14 |
|
| 15 |
HEALTHCHECK CMD curl --fail http://localhost:8765/_stcore/health
|
| 16 |
|
| 17 |
-
ENTRYPOINT ["solara", "run", "./pages", "--
|
|
|
|
| 1 |
+
FROM python:3.12-slim
|
| 2 |
|
| 3 |
COPY requirements.txt .
|
| 4 |
RUN pip install -r requirements.txt
|
|
|
|
| 14 |
|
| 15 |
HEALTHCHECK CMD curl --fail http://localhost:8765/_stcore/health
|
| 16 |
|
| 17 |
+
ENTRYPOINT ["solara", "run", "./pages", "--host=0.0.0.0"]
|