Spaces:
Runtime error
Runtime error
| FROM python:3.11 | |
| WORKDIR /code | |
| COPY ./requirements.txt /code/requirements.txt | |
| RUN pip install -r ./requirements.txt | |
| COPY . . | |
| EXPOSE 7860 | |
| USER root | |
| RUN mkdir -p /.cache | |
| RUN chmod 777 /.cache | |
| RUN chmod 777 /code/* | |
| CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"] | |