FROM python:latest WORKDIR /app COPY ./requirements.txt /app/ EXPOSE 8000 RUN pip install -r requirements.txt COPY . /app CMD ["gunicorn", "app:app", "-w", "3", "-b", "0.0.0.0:8000"]