8 lines
109 B
Bash
8 lines
109 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
dir="$(realpath $1)"
|
||
|
|
||
|
docker run --rm -v "$dir":/build -w /build linuturk/mono-choco pack
|