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