containerit icon indicating copy to clipboard operation
containerit copied to clipboard

E: Repository 'http://cdn-fastly.deb.debian.org/debian testing InRelease' changed its 'Codename' value from 'buster' to 'bullseye'

Open MarkEdmondson1234 opened this issue 4 years ago • 1 comments

I got this error message when generating from a script that produced the start of the Dockerfile below:

FROM trestletech/plumber
LABEL maintainer="IIH-Nordic"
RUN export DEBIAN_FRONTEND=noninteractive; apt-get -y update  \
  && apt-get install -y git-core \
	libcurl4-openssl-dev \
	libssl-dev \
	make
...etc...

It seems the debian lists are updating, that I gleaned from this SO answer: https://unix.stackexchange.com/questions/528751/cannot-update-apt-list-repository-no-longer-has-a-release-file

The answer there to add --allow-releaseinfo-change to the below worked:

 apt-get -y update --allow-releaseinfo-change

MarkEdmondson1234 avatar Sep 04 '19 13:09 MarkEdmondson1234

Thanks for reporting, and for giving a potential solution! Will take a look asap. I'll need to investigate if this is something that containerit can simply add all the time.

nuest avatar Sep 10 '19 07:09 nuest