You've already forked factorio-server-manager
mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2026-04-26 20:02:17 +02:00
11 lines
245 B
Bash
Executable File
11 lines
245 B
Bash
Executable File
#!/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
|