CraftPilotHost / Dockerfile
vaporizor
Inital project
6112997
raw
history blame contribute delete
538 Bytes
# 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
# Kept for convenience if dependencies needed in the future
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
USER root
RUN chown -R user /app && chmod -R 700 /app
USER user
CMD ["python", "main.py"]