Spaces:
Sleeping
Sleeping
File size: 386 Bytes
56d7445 b80a343 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM ghcr.io/astral-sh/uv:python3.11-bookworm-slim
WORKDIR /code
RUN mkdir /.cache
RUN chmod 777 /.cache
COPY ./requirements.txt /code/requirements.txt
RUN uv pip install -r /code/requirements.txt --system
COPY . .
ENTRYPOINT []
CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*", "--num-procs", "2", "--index", "app"] |