Skip to content

Instantly share code, notes, and snippets.

@limbuu
Created July 13, 2020 15:25
Show Gist options
  • Save limbuu/d59231242098b6c3e13ea288de08d20e to your computer and use it in GitHub Desktop.
Save limbuu/d59231242098b6c3e13ea288de08d20e to your computer and use it in GitHub Desktop.
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install python3 -y
RUN apt-get install software-properties-common -y && apt-add-repository universe -y
RUN apt-get update
RUN apt-get install python3-pip -y
ADD ./main.py .
RUN pip3 install flask
CMD ["python3","main.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment