You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
254 B
10 lines
254 B
![]()
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
echo "Building binary in docker"
|
||
|
|
||
|
docker build . -t schlez/nsw-static-binary
|
||
|
|
||
|
echo "Copying to ./nsw-linux"
|
||
|
|
||
|
docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) schlez/nsw-static-binary cp /app/_build/default/executable/NswApp.exe ./nsw-linux
|