Spaces:
Running
Running
Bor Hodošček
commited on
fix: update uv and run command
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
FROM python:3.12
|
2 |
-
COPY --from=ghcr.io/astral-sh/uv:0.
|
3 |
|
4 |
RUN useradd -m -u 1000 user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
@@ -13,4 +13,4 @@ RUN uv sync
|
|
13 |
COPY --chown=user . /app
|
14 |
USER user
|
15 |
|
16 |
-
CMD ["uv", "run", "marimo", "run", "app.py", "--include-code", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
1 |
FROM python:3.12
|
2 |
+
COPY --from=ghcr.io/astral-sh/uv:0.7.3 /uv /bin/uv
|
3 |
|
4 |
RUN useradd -m -u 1000 user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
|
|
13 |
COPY --chown=user . /app
|
14 |
USER user
|
15 |
|
16 |
+
CMD ["uv", "run", "marimo", "run", "app.py", "--no-sandbox", "--include-code", "--host", "0.0.0.0", "--port", "7860"]
|