Files
SMW-Upload/Dockerfile
2025-12-03 12:47:17 -05:00

12 lines
258 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install --upgrade gunicorn
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "seduttomachineworks_project.wsgi:application", "--bind", "0.0.0.0:8000"]