Geraldine's picture
Update Dockerfile
4ca86be verified
raw
history blame contribute delete
443 Bytes
# syntax=docker/dockerfile:1
FROM python:3.11-slim
RUN apt-get update && apt-get install -y git
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 --upgrade pip
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY --chown=user . /app
EXPOSE 7860
CMD gunicorn --workers 5 --threads 2 -b 0.0.0.0:7860 --timeout 0 app:server