authservice/build.sh
2021-01-25 21:52:52 +01:00

9 lines
163 B
Bash
Executable File

#!/bin/bash
IMAGE_NAME="registry.hottis.de/wolutator/authservice"
VERSION=0.0.1
docker build -t ${IMAGE_NAME}:${VERSION} .
docker push ${IMAGE_NAME}:${VERSION}