factorio-server-manager/docker/build.sh

11 lines
245 B
Bash
Raw Normal View History

2020-11-20 17:53:17 +02:00
#!/bin/bash
set -eou pipefail
(
cd ..
make build
cp build/factorio-server-manager-linux.zip docker/factorio-server-manager-linux.zip
)
docker build -f Dockerfile-local -t factorio-server-manager:dev .
rm factorio-server-manager-linux.zip