Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. FROM ubuntu:latest
  2.  
  3. RUN apt-get update
  4. RUN apt-get update --fix-missing
  5. RUN apt-get install -y python-pip
  6.  
  7. ADD . /opt/app
  8. WORKDIR /opt/app
  9.  
  10. RUN pip install -r requirements.txt
  11.  
  12. ENV C_FORCE_ROOT="true"
  13. CMD ./run.sh
  14.  
  15. #CMD python knureon.py
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement