7 months ago
I tried to redeploy a successful deployment from 3 weeks ago but it is now failing
These are the build logs
Package libgl1-mesa-glx is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'libgl1-mesa-glx' has no installation candidate
✕ [3/7] RUN apt-get update && apt-get install -y gcc g++ libgl1-mesa-glx libglib2.0-0 libsm6 libxext6 libxrender-dev libgomp1 && rm -rf /var/lib/apt/lists/*
process "/bin/sh -c apt-get update && apt-get install -y gcc g++ libgl1-mesa-glx libglib2.0-0 libsm6 libxext6 libxrender-dev libgomp1 && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 100
2 Replies
7 months ago
Hey there! We've found the following might help you get unblocked faster:
If you find the answer from one of these, please let us know by solving the thread!
7 months ago
This thread has been marked as public for community involvement, as it does not contain any sensitive or personal information. Any further activity in this thread will be visible to everyone.
Status changed to Open brody • 7 months ago
7 months ago
The package libgl1-mesa-glx is no longer available or has been replaced or renamed in the Debian Bookworm. You have to use the package that is now available with Debian, which is libgl1 packageRUN apt-get update && apt-get install -y gcc g++ libgl1-mesa-dri libglib2.0-0 libsm6 libxext6 libxrender-dev libgomp1 && rm -rf /var/lib/apt/lists/*
Update this in your Dockerfile. If it helps, do mark this as the solution.