Spaces:
Sleeping
Sleeping
File size: 489 Bytes
aacb61d f85561f aacb61d 83876e2 c6a2dd5 | 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 python:3.9
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
RUN wget "https://github.com/9001/copyparty/releases/latest/download/copyparty-sfx.py" -O copyparty-sfx.py
RUN chown user:user copyparty-sfx.py
COPY --chown=user ./entrypoint.sh entrypoint.sh
RUN chmod +x entrypoint.sh
CMD ["/app/entrypoint.sh"]
|