FROM python:alpine WORKDIR /app RUN pip install Flask==2.1.0 gunicorn==20.1.0 COPY . /app ENTRYPOINT ["gunicorn", "-c", "config.py", "app:app"]