10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#!/usr/bin/env bash
|
|
test -t 1 && use_tty='-t'
|
|
docker run --rm -i ${use_tty} \
|
|
-u $(id -u):$(id -g) \
|
|
-v "$HOME:$HOME" \
|
|
-w "$(pwd)" \
|
|
--entrypoint jsgf-gen \
|
|
synesthesiam/jsgf-gen:1.0 \
|
|
"$@"
|