Spaces:
Runtime error
Runtime error
FROM pytorch/pytorch:latest | |
RUN apt update && apt install -y && 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 | |
COPY --chown=user start.sh . | |
RUN chmod +x start.sh | |
CMD ["./start.sh"] | |