Created
June 22, 2020 08:15
-
-
Save vamsijakkula/c44d76b9317322e1bba998b0164fc478 to your computer and use it in GitHub Desktop.
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 python:3-alpine | |
RUN mkdir /app | |
WORKDIR /app | |
COPY main.py /app | |
RUN pip install flask | |
EXPOSE 5000 | |
CMD ["python", "main.py"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment