Spaces:
Build error
Build error
FROM python:3.11 | |
# Update package list and install Python & pip | |
RUN useradd -m -u 1010 user | |
USER user | |
ENV PATH="/home/user/.local/bin:$PATH" | |
WORKDIR /app | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
COPY --chown=user . /app | |
CMD ["python", "app.py"] |