File size: 398 Bytes
3ca1ca3 d1fd4c0 3d2ea5b 3ca1ca3 cc3c56d 3ca1ca3 6f19bfc 435ce6e a8cad6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# 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.11
RUN apt-get update && apt-get install -y openssh-client sshpass
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user . /app
RUN pip install -e .
RUN chmod +x ./start.sh
CMD ["./start.sh"]
|