Skip to content

Instantly share code, notes, and snippets.

@cbonesana
Created April 1, 2020 15:58
Show Gist options
  • Save cbonesana/025dd6707480caec9ed61dc235dce8b2 to your computer and use it in GitHub Desktop.
Save cbonesana/025dd6707480caec9ed61dc235dce8b2 to your computer and use it in GitHub Desktop.
Run a python scirpt inside docker 🐳
#!/bin/bash
docker run -it --rm -v "$(pwd)":"/w" -w "/w" python:3.8-slim python scripty.py
print('Hello World!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment