Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. FROM ubuntu:18.04
  2.  
  3. RUN apt-get update
  4. RUN apt-get install -y git
  5. RUN apt-get install -y python3
  6. RUN apt-get install -y python3-pip
  7. RUN apt-get install -y emacs
  8.  
  9. RUN pip3 install flask
  10. RUN pip3 install --upgrade flask
  11. RUN pip3 install mysql-connector-python
  12.  
  13. ENV APP_PATH=/home
  14. WORKDIR $APP_PATH
  15. ENV HOME $APP_PATH
  16.  
  17. CMD [ "/bin/sh" ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement