Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
FROM python:3.6.8-alpine
LABEL image for a very simple flask application
WORKDIR /docker-flask
COPY . .
RUN ["pip3", "install", "pipenv"]
RUN ["pipenv", "install"]
CMD pipenv run python main.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment