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.
23 lines
446 B
Bash
23 lines
446 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Operate in the directory where this file is located
|
|
cd $(dirname $0)
|
|
|
|
# Build Adam
|
|
( rm -rf adam
|
|
git clone https://github.com/hhu-adam/Robo adam/
|
|
cd adam
|
|
docker rmi adam:latest || true
|
|
docker build \
|
|
--rm -f Dockerfile -t adam:latest .
|
|
)
|
|
|
|
# Build NNG
|
|
( rm -rf nng
|
|
git clone https://github.com/hhu-adam/NNG4 nng/
|
|
cd nng
|
|
docker rmi nng:latest || true
|
|
docker build \
|
|
--rm -f Dockerfile -t nng:latest .
|
|
)
|