Skip to content

Commit

Permalink
fix(swagger-codegen): use Ubuntu-based JRE image
Browse files Browse the repository at this point in the history
The Alpine JRE image only supports ARM64. The Ubuntu image supports all relevant architectures.

BREAKING CHANGE: This drops support for IBM z Systems (linux/s390x).
  • Loading branch information
fgreinacher committed Jan 8, 2025
1 parent 3230def commit 693d403
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-release-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
with:
context: ./modules/swagger-generator
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/ppc64le
provenance: false
tags: swaggerapi/swagger-generator:${{ env.TAG }},swaggerapi/swagger-generator:latest
- name: Build CLI image and push
Expand Down
2 changes: 1 addition & 1 deletion modules/swagger-generator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM eclipse-temurin:8-jre-alpine
FROM eclipse-temurin:8-jre

WORKDIR /generator

Expand Down

0 comments on commit 693d403

Please sign in to comment.