update dockerfile and action
All checks were successful
Build docker container / build (release) Successful in 51s

This commit is contained in:
David Claeys
2025-04-01 16:06:12 +02:00
parent 27f976ded5
commit b2ea502343
2 changed files with 8 additions and 7 deletions

View File

@ -39,9 +39,14 @@ jobs:
type=semver,pattern={{raw}}
type=sha
type=semver,pattern={{version}}
- name: Generate random password for certificate
id: password
run:
echo "secret=$(openssl rand -base64 12)" >> $GITHUB_OUTPUT
- name: Build and push
uses: https://github.com/docker/build-push-action@v5
with:
build-args: CERT_PASSWORD=${{ steps.password.outputs.secret }}
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}