Spaces:
Runtime error
Runtime error
File size: 383 Bytes
689a76f ad33ef9 689a76f ad33ef9 689a76f ad33ef9 689a76f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM condaforge/mambaforge:23.1.0-1
RUN mamba install -y sbt=1.7.1 git gradio
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
ENTRYPOINT python app.py
|