Spaces:
Sleeping
Sleeping
File size: 630 Bytes
7104b2c 39619b7 7104b2c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | FROM python:3.9-slim
# Install system dependencies
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Create a non-root user
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Setup working directory in home
WORKDIR $HOME/app
# Copy requirements FIRST to leverage Docker cache
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir --user -r requirements.txt
# Copy the rest of the application
COPY --chown=user . .
# Environment setup
ENV PORT=7860
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]
|