Spaces:
Runtime error
Runtime error
File size: 787 Bytes
29eecb6 f397951 29eecb6 7ffc395 29eecb6 7ffc395 29eecb6 7ffc395 29eecb6 c97eca4 f397951 14c4c04 c97eca4 f397951 c97eca4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
FROM pytorch/pytorch:latest
RUN apt update && apt install -y && apt install -y ffmpeg&& rm -rf /var/lib/apt/lists/*
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
COPY --chown=user requirements.txt .
RUN python3 -m pip install -r requirements.txt
COPY --chown=user setup.py VERSION .
COPY --chown=user src ./src
RUN python3 -m pip install .
COPY --chown=user "demo.py" .
EXPOSE 7860 8080
ENV GRADIO_SERVER_NAME="0.0.0.0"
COPY demo-sqlite-data.db sqlite-data.db
COPY --chown=user "start.sh" .
RUN chmod +x "start.sh"
CMD ["./start.sh"]
|