adtrack-v2 / Dockerfile
cracker0935's picture
Audit Backend
97ea4f7
raw
history blame contribute delete
580 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
# Create a writable directory for cache/downloads if needed, though HF spaces usually allows writing to specific dirs.
# Setting permissions for non-root user (user 1000 is often the default in HF Spaces)
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]