10 lines
193 B
Plaintext
10 lines
193 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
docker build -t toxchat/c-toxcore:perf -f other/docker/perf/Dockerfile .
|
||
|
docker run --privileged --rm -it \
|
||
|
-v "$PWD:/work/c-toxcore" \
|
||
|
toxchat/c-toxcore:perf \
|
||
|
"$@"
|