This commit is contained in:
Lukas Rieger (Blue) 2023-05-15 17:01:50 +02:00
commit aed400ddae
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
2 changed files with 2 additions and 4 deletions

View File

@ -75,6 +75,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: ${{ github.event_name != 'pull_request' }}

View File

@ -1,10 +1,7 @@
FROM eclipse-temurin:17-jre-alpine
FROM eclipse-temurin:17-jre-jammy
WORKDIR /app
RUN apk update && \
apk upgrade
COPY build/release/*-cli.jar cli.jar
ENTRYPOINT [ "java", "-jar", "cli.jar" ]