Last active
September 27, 2023 09:26
-
-
Save jvdi/9df30f2a9b69a1bd8dbc33aa89fe23be to your computer and use it in GitHub Desktop.
Dockerfile for Deploy FlaskApp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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