-
-
Notifications
You must be signed in to change notification settings - Fork 229
Description
Describe the bug.
Fresh Docker builds fail on a clean system.
Running docker build with the current Dockerfile fails during apt-get update because the base image openjdk:16.0.1-jdk-slim-buster is based on Debian 10 (Buster), which has reached End of Life (EOL).
The Debian Buster repositories are no longer available at the standard URLs, causing 404 errors and aborting the build.
Impact
As a result, the project cannot be built from a clean environment using the current Dockerfile.
Expected behavior
Running docker build with the current Dockerfile should complete successfully on a clean system.
The base image and package repositories should be supported and available, and the build process should proceed without 404 errors or early failures during apt-get update.
Screenshots
docker build failing during apt-get update with 404 errors from Debian Buster repositories.
How to Reproduce
-
Clone the repository on a clean system.
-
Navigate to the root directory of the project.
-
Run the following command:
docker build .
🖥️ Device Information [optional]
- Operating System (OS): macOS
- Browser: N/A
- Browser Version: N/A
👀 Have you checked for similar open issues?
- I checked and didn't find similar issue
🏢 Have you read the Contributing Guidelines?
- I have read the Contributing Guidelines
Are you willing to work on this issue ?
Yes I am willing to submit a PR!