unknown
Fix apt package name for Debian Trixie: libgl1-mesa-glx -> libgl1
bf690df
Raw
History Blame Contribute Delete
409 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
libgl1 libglib2.0-0 curl \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python manage.py collectstatic --noinput
CMD ["gunicorn", "ConstellationPredictor.wsgi:application", \
"--bind", "0.0.0.0:7860", "--workers", "1", "--timeout", "120"]