Spaces:
Running
Running
File size: 566 Bytes
f06d2fd d95b996 f06d2fd d95b996 f06d2fd d95b996 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
FROM python:3.12
COPY --from=ghcr.io/astral-sh/uv:0.4.20 /uv /bin/uv
RUN useradd -m -u 1000 user
ENV PATH="/home/user/.local/bin:$PATH"
ENV UV_SYSTEM_PYTHON=1
WORKDIR /app
# Set up app directory with appropriate ownership
RUN mkdir -p /app && chown -R user:user /app
COPY --chown=user ./requirements.txt requirements.txt
RUN uv pip install -r requirements.txt
COPY --chown=user . /app
# Ensure the user can write to the working directory
RUN chmod -R u+w /app
USER user
CMD ["marimo", "run", "app.py", "--include-code", "--host", "0.0.0.0", "--port", "7860"] |