Guest User

Untitled

a guest
Feb 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # Build from the latest Python 3 image
  2. FROM python:3
  3.  
  4. # Add the scripts folder from our project to the image
  5. ADD ./scripts ./scripts
  6.  
  7. # Run our Python script
  8. CMD [ "python", "./scripts/Countdown.py" ]
Add Comment
Please, Sign In to add comment