SondosM's picture
Update Dockerfile
a089fd3 verified
raw
history blame contribute delete
778 Bytes
FROM python:3.10-slim
# Install system libraries with broader package names
RUN apt-get update && apt-get install -y \
libgl1 \
libglx0 \
libegl1 \
libdbus-1-3 \
libxcursor1 \
libxcomposite1 \
libxdamage1 \
libxrandr2 \
libxtst6 \
libpango-1.0-0 \
libasound2 \
libglib2.0-0 \
git \
&& rm -rf /var/lib/apt/lists/*
# Setup non-root user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Copy requirements and install
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Copy the rest of the application
COPY --chown=user . .
# Run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]