Files
docker/latex/build-image.sh
Janis Hutz 1f3495bee7
All checks were successful
Create and publish container / build_container (push) Successful in 17s
Update build script
2025-12-23 07:24:35 +01:00

8 lines
128 B
Bash
Executable File

#!/bin/sh
echo "Build will be tagged with $1"
echo "Build directory is $(pwd)"
docker buildx build . -t "$1"
docker push "$1"