Guest User

Untitled

a guest
Oct 20th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. FROM ubuntu
  2. MAINTAINER me <my@email.com>
  3.  
  4. RUN apt-get update && apt-get install -y python-minimal python-numpy python-scipy python-matplotlib
  5.  
  6. COPY script1.py /home/code/script1.py
  7. COPY script2.py /home/code/script2.py
  8. COPY script3.py /home/code/script3.py
  9. COPY script4.py /home/code/script4.py
  10.  
  11. VOLUME ["/mnt/external_database_folder"]
  12.  
  13. EXPOSE some_port
  14.  
  15.  
  16. ENTRYPOINT python /home/code/script1.py
Add Comment
Please, Sign In to add comment