Skip to content

Instantly share code, notes, and snippets.

@awgreene
Last active February 11, 2018 14:26
Show Gist options
  • Save awgreene/c902412647e900f33a092f4479ee29cc to your computer and use it in GitHub Desktop.
Save awgreene/c902412647e900f33a092f4479ee29cc to your computer and use it in GitHub Desktop.
# Build from the latest Python 3 image
FROM python:3
# Add the scripts folder from our project to the image
ADD ./scripts ./scripts
# Run our Python script
CMD [ "python", "./scripts/Countdown.py" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment