You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lean4game/server/build.sh

43 lines
832 B
Bash

#!/usr/bin/env sh
# Operate in the directory where this file is located
cd $(dirname $0)
# TODO: Pull prebuilt docker images from GitHub
# Build elan image if not already present
docker build --pull --rm -f elan.Dockerfile -t elan:latest .
# Build Adam
( if [ ! -d adam ]
then
git clone https://github.com/hhu-adam/Robo adam/
cd adam
else
cd adam
git pull
fi
lake exe cache get
lake build)
docker rmi adam:latest || true
docker build \
--build-arg GAME_DIR=adam \
--rm -f server.Dockerfile -t adam:latest .
# Build NNG
( if [ ! -d nng ]
then
git clone https://github.com/hhu-adam/NNG4 nng/
cd nng
else
cd nng
git pull
fi
lake exe cache get
lake build)
docker rmi nng:latest || true
docker build \
--build-arg GAME_DIR=nng \
--rm -f server.Dockerfile -t nng:latest .