Skip to content

Commit 3b7ee64

Browse files
authored
feat: arm64 support for docker image (#432)
1 parent 463f5cb commit 3b7ee64

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
uses: docker/build-push-action@v3
7676
with:
7777
context: .
78+
platforms: linux/amd64,linux/arm64
7879
tags: ${{ steps.metadata.outputs.tags }}
7980
labels: ${{ steps.metadata.outputs.labels }}
8081
push: ${{ github.event_name != 'pull_request' }}

Dockerfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
FROM eclipse-temurin:17-jre-alpine
1+
FROM eclipse-temurin:17-jre-jammy
22

33
WORKDIR /app
44

5-
RUN apk update && \
6-
apk upgrade
7-
85
COPY build/release/*-cli.jar cli.jar
96

107
ENTRYPOINT [ "java", "-jar", "cli.jar" ]

0 commit comments

Comments
 (0)