Skip to content

Instantly share code, notes, and snippets.

@jvdi
Last active September 27, 2023 09:26
Show Gist options
  • Save jvdi/9df30f2a9b69a1bd8dbc33aa89fe23be to your computer and use it in GitHub Desktop.
Save jvdi/9df30f2a9b69a1bd8dbc33aa89fe23be to your computer and use it in GitHub Desktop.
Dockerfile for Deploy FlaskApp
FROM tiangolo/uwsgi-nginx-flask
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY ./app /app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment