alternative-backend-service/dockerfile

17 lines
345 B
Plaintext
Raw Normal View History

2025-11-23 23:29:50 +00:00
FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt
2025-11-23 23:29:50 +00:00
COPY . .
2025-11-23 23:29:50 +00:00
RUN python manage.py collectstatic --noinput
EXPOSE 8000
CMD ["gunicorn", "booking_system.wsgi:application", "--bind", "0.0.0.0:8000", "--workers", "3"]