Azure / azure-functions-docker

This repo contains the base Docker images for working with azure functions
MIT License
259 stars 117 forks source link

Some core-tools images are using previous debian release package sources. #847

Open Clockwork-Muse opened 1 year ago

Clockwork-Muse commented 1 year ago

For instance, the dotnet isolated coretools explicitly references debian 9 (stretch):

wget -q https://packages.microsoft.com/config/debian/9/prod.list

... but the base image, mcr.microsoft.com/dotnet/sdk:6.0, is debian 11 (bullseye):

$ docker run --rm mcr.microsoft.com/dotnet/sdk:6.0 cat /etc/*-release
cat: /etc/lsb-release: No such file or directory
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

(yes, I'm aware you can generally use previous release package lists, but it would be nice to get an updated source)

jeffpuckett commented 1 year ago

To add the isolated core tools image is not rebuilt on a regular basis. It hasn't been updated since December.