sbt/docker-sbt

republish openjdk:11.0.1 based images?

Closed this issue · 2 comments

It looks like the openjdk:11.0.1 image used to be based on the debian sid image, but has at some point been republished based on the debian stretch image.

Proof:

> docker run --rm hseeberger/scala-sbt:11.0.1_2.12.8_1.2.7 cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux buster/sid"
NAME="Debian GNU/Linux"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

> docker run --rm openjdk:11.0.1 cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

Would it be possible to rebuild (with a clear docker build cache!) and republish the images in this repo that are jdk11-based (or at least just the latest tag)?

I think 11.0.1_2.12.8_1.2.8 should fix your issue, right?

> docker run --rm hseeberger/scala-sbt:11.0.1_2.12.8_1.2.8 cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 9 (stretch)"
NAME="Debian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

It does. Thanks!