Skip to content

Instantly share code, notes, and snippets.

@saggie
Last active April 6, 2022 05:11
Show Gist options
  • Save saggie/c3695334c740417f5cc4e3347dc97505 to your computer and use it in GitHub Desktop.
Save saggie/c3695334c740417f5cc4e3347dc97505 to your computer and use it in GitHub Desktop.
Run Python via Docker
docker run -itd --rm --name my-python --volume $PWD:/opt/work python:3 /bin/sh
docker exec -it my-python bash
cd /opt/work
python your_script.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment