ensure alpine is the default image

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2025-10-29 17:19:38 -04:00
parent 62d4856f7a
commit 9f1be586be
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -3,8 +3,8 @@
IMAGE=${IMAGE:-"thealmightydrawingtablet/nfs-krb"}
VERSION=$(git tag --sort=-committerdate | head -n 1)
docker build --progress=plain -t "${IMAGE}:alpine" -t "${IMAGE}:${VERSION}-alpine" .
docker build --progress=plain -t "${IMAGE}:ubuntu" -t "${IMAGE}:${VERSION}-ubuntu" -f ./Dockerfile.ubuntu .
docker build --progress=plain -t "${IMAGE}:alpine" -t "${IMAGE}:${VERSION}-alpine" .
if [ "$1" == "push" ]; then
docker push --all-tags "${IMAGE}"