We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 742f96d + 3b7ee64 commit aed400dCopy full SHA for aed400d
.github/workflows/build.yml
@@ -75,6 +75,7 @@ jobs:
75
uses: docker/build-push-action@v3
76
with:
77
context: .
78
+ platforms: linux/amd64,linux/arm64
79
tags: ${{ steps.metadata.outputs.tags }}
80
labels: ${{ steps.metadata.outputs.labels }}
81
push: ${{ github.event_name != 'pull_request' }}
Dockerfile
@@ -1,10 +1,7 @@
1
-FROM eclipse-temurin:17-jre-alpine
+FROM eclipse-temurin:17-jre-jammy
2
3
WORKDIR /app
4
5
-RUN apk update && \
6
- apk upgrade
7
-
8
COPY build/release/*-cli.jar cli.jar
9
10
ENTRYPOINT [ "java", "-jar", "cli.jar" ]
0 commit comments