You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 28, 2026. It is now read-only.
Please check that this issue hasn't been reported before.
Expected Behavior
Docker build fails because python:3.11-slim-buster is deprecated and openjdk-11-jdk cannot be installed.
Current behaviour
error message: target platform: failed to solve: process "/bin/sh -c apt-get update && apt-get install -y default-libmysqlclient-dev gcc pkg-config openjdk-11-jdk build-essential && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 100
Steps to reproduce
execute ./setup.sh
select Docker method
Possible solution
Changed:
FROM python:3.11-slim-buster as prod
To:
FROM python:3.11-slim-bookworm as prod
Replaced unavailable Java 11 with Java 17
Updated the install block:
RUN apt-get update && apt-get install -y
default-libmysqlclient-dev
gcc
pkg-config
openjdk-17-jdk
build-essential
&& rm -rf /var/lib/apt/lists/*
Which Operating Systems are you using?
Acknowledgements