Skip to content

Instantly share code, notes, and snippets.

@chhanganivarun
Created March 6, 2019 11:19
Show Gist options
  • Save chhanganivarun/52230e4ca6e06db55e8d1bf9af32cb80 to your computer and use it in GitHub Desktop.
Save chhanganivarun/52230e4ca6e06db55e8d1bf9af32cb80 to your computer and use it in GitHub Desktop.
Docker Beginner Assignment
FROM ubuntu
run apt update && apt install -y python3 python3-pip
copy hello.py /opt/
run chmod +x /opt/hello.py
CMD python3 /opt/hello.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment