Spaces:
Sleeping
Sleeping
Commit
·
1fed6b3
1
Parent(s):
a5544cb
updates
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
FROM python:3.12
|
2 |
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
|
3 |
-
|
4 |
RUN useradd -m -u 1000 user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
ENV UV_SYSTEM_PYTHON=1
|
@@ -16,4 +16,4 @@ RUN mkdir -p /app/__marimo__ && \
|
|
16 |
chmod -R 755 /app
|
17 |
USER user
|
18 |
|
19 |
-
CMD ["marimo", "
|
|
|
1 |
FROM python:3.12
|
2 |
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
|
3 |
+
RUN curl -fsSL https://ollama.com/install.sh | sh
|
4 |
RUN useradd -m -u 1000 user
|
5 |
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
ENV UV_SYSTEM_PYTHON=1
|
|
|
16 |
chmod -R 755 /app
|
17 |
USER user
|
18 |
|
19 |
+
CMD ["marimo", "run", "app.py", "--include-code", "--host", "0.0.0.0", "--port", "7860"]
|