Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. FROM python:2.7
  2.  
  3. # Add sample application
  4. ADD application.py /tmp/application.py
  5.  
  6. EXPOSE 8000
  7.  
  8. # Run it
  9. ENTRYPOINT ["python", "/tmp/application.py"]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement