chore: update Docker base image to avoid EOL Debian Buster#2413
Merged
jonaslagoni merged 3 commits intoasyncapi:masterfrom Jan 19, 2026
Merged
chore: update Docker base image to avoid EOL Debian Buster#2413jonaslagoni merged 3 commits intoasyncapi:masterfrom
jonaslagoni merged 3 commits intoasyncapi:masterfrom
Conversation
✅ Deploy Preview for modelina canceled.
|
There was a problem hiding this comment.
Pull request overview
This pull request addresses a critical build failure caused by the Dockerfile using an End-of-Life (EOL) Debian Buster base image whose repositories are no longer available. The PR updates the Docker development environment to use a supported Ubuntu-based image and adjusts package installations accordingly.
Changes:
- Updated base image from openjdk:16.0.1-jdk-slim-buster to eclipse-temurin:17-jdk-jammy
- Migrated repository configurations and package names from Debian Buster to Ubuntu Jammy
- Updated language runtime installations (Python, PHP, mono, chromium) to be compatible with Ubuntu
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
Please retry analysis of this Pull-Request directly on SonarQube Cloud |
Pull Request Test Coverage Report for Build 21130081528Details
💛 - Coveralls |
jonaslagoni
approved these changes
Jan 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request fixes failing Docker builds caused by the base image using Debian Buster, which has reached End of Life (EOL) and whose repositories are no longer available.
The Dockerfile has been updated to use a supported base image and compatible package sources so that
docker build .works correctly on a clean system.Related Issue
Closes #2412
Checklist
npm run lint).npm run test).Additional Notes
openjdk:16.0.1-jdk-slim-bustertoeclipse-temurin:17-jdk-jammypythonpackage withpython3This restores the ability to build the project from a clean environment.