Add build script for riot

This commit is contained in:
Aode 2020-01-28 11:42:19 -06:00
parent 9301a0e319
commit ef12cdcef5
2 changed files with 41 additions and 1 deletions

View file

@ -1,4 +1,4 @@
FROM vectorim/riot-web as builder
FROM vectorim/riot-web:VERSION as builder
FROM arm64v8/nginx:1.17.8-alpine

40
riot/build.sh Executable file
View file

@ -0,0 +1,40 @@
#!/usr/bin//env bash
TAG=$1
function require() {
if [ "$1" = "" ]; then
echo "input '$2' required"
print_help
exit 1
fi
}
function print_help() {
echo "build.sh"
echo ""
echo "Usage:"
echo " build.sh [tag]"
echo ""
echo "Args:"
echo " tag: The tag of the riot-web image the target image is based on"
}
set -xe
require "$TAG" tag
sed "s/VERSION/$TAG/g" Dockerfile > "Dockerfile.$TAG"
docker build \
-f "Dockerfile.$TAG" \
-t "asonix/riot-web:$TAG-arm64v8" \
-t asonix/riot-web:latest-arm64v8 \
-t asonix/riot-web:latest \
.
docker push "asonix/riot-web:$TAG-arm64v8"
docker push asonix/riot-web:latest-arm64v8
docker push asonix/riot-web:latest
rm "Dockerfile.$TAG"