|
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"]
|