mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
10 lines
132 B
Bash
Executable file
10 lines
132 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
abs=$1
|
|
file=$(basename $abs)
|
|
|
|
docker run \
|
|
--rm \
|
|
-v $abs:/$file \
|
|
-it piston \
|
|
python3 /$file
|