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.
|
#!/bin/bash |
|
|
|
echo "Building binary in docker" |
|
|
|
docker build . -t schlez/fnm-static-binary |
|
|
|
echo "Copying to ./fnm-linux" |
|
|
|
docker run --rm -v $(pwd):$(pwd) --workdir $(pwd) schlez/fnm-static-binary cp /app/_build/default/executable/FnmApp.exe ./fnm-linux
|
|
|