imagedetect / Dockerfile
popeyewrener
test
5b3c34c
raw
history blame contribute delete
No virus
507 Bytes
FROM python:3.11
RUN useradd -m -u 1000 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
# Switch to root to install OpenGL libraries
USER root
RUN apt-get update && \
apt-get install -y --no-install-recommends libgl1-mesa-glx && \
rm -rf /var/lib/apt/lists/*
USER user
COPY --chown=user . /app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]