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.
11 lines
317 B
Bash
11 lines
317 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Operate in the directory where this file is located
|
|
cd $(dirname $0)
|
|
|
|
# Build elan image if not already present
|
|
docker build --pull --rm -f elan.Dockerfile -t elan:latest .
|
|
|
|
(cd testgame && lake build)
|
|
docker rmi testgame:latest || true
|
|
docker build --rm -f server.Dockerfile -t testgame:latest . |