diff --git a/12/Dockerfile b/12/Dockerfile index 922774e..0bab3c4 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -10,21 +10,21 @@ RUN \ echo "Platform: ${TARGETPLATFORM}" >> /log && \ echo "Debian: 12.12" >> /log && \ echo "Busybox: 1.36.1" >> /log && \ - echo "Nushell: 0.108.0" >> /log + echo "Nushell: 0.109.1" >> /log #====================================================================================================================== # STAGE 1: load busybox #====================================================================================================================== -FROM quay.io/bfren/busybox:1.36.1-debian12.12-251121 AS busybox +FROM quay.io/bfren/busybox:1.36.1-debian12.12-251204 AS busybox #====================================================================================================================== # STAGE 2: load Nushell #====================================================================================================================== -FROM quay.io/bfren/nushell:0.108.0-bookworm-251121 AS nushell +FROM quay.io/bfren/nushell:0.109.1-bookworm-251121 AS nushell #====================================================================================================================== @@ -37,7 +37,7 @@ WORKDIR /tmp RUN \ # get the overlay from the Alpine base image echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v3.0.2 https://github.com/bfren/docker-alpine.git && \ + apk add git && git clone --branch v3.1.0 https://github.com/bfren/docker-alpine.git && \ mv docker-alpine/overlay / @@ -67,7 +67,7 @@ ENV \ # 1: yes BF_UPGRADE_PACKAGES=0 \ # Nushell version string to check against installed verion after installation - NU_VERSION=0.108.0 + NU_VERSION=0.109.1 RUN \ # delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone diff --git a/13/Dockerfile b/13/Dockerfile index bf7c9da..4c03080 100644 --- a/13/Dockerfile +++ b/13/Dockerfile @@ -10,21 +10,21 @@ RUN \ echo "Platform: ${TARGETPLATFORM}" >> /log && \ echo "Debian: 13.2" >> /log && \ echo "Busybox: 1.36.1" >> /log && \ - echo "Nushell: 0.108.0" >> /log + echo "Nushell: 0.109.1" >> /log #====================================================================================================================== # STAGE 1: load busybox #====================================================================================================================== -FROM quay.io/bfren/busybox:1.36.1-debian13.2-251121 AS busybox +FROM quay.io/bfren/busybox:1.36.1-debian13.2-251204 AS busybox #====================================================================================================================== # STAGE 2: load Nushell #====================================================================================================================== -FROM quay.io/bfren/nushell:0.108.0-trixie-251121 AS nushell +FROM quay.io/bfren/nushell:0.109.1-trixie-251121 AS nushell #====================================================================================================================== @@ -37,7 +37,7 @@ WORKDIR /tmp RUN \ # get the overlay from the Alpine base image echo "Cloning Alpine overlay." && \ - apk add git && git clone --branch v3.0.2 https://github.com/bfren/docker-alpine.git && \ + apk add git && git clone --branch v3.1.0 https://github.com/bfren/docker-alpine.git && \ mv docker-alpine/overlay / @@ -67,7 +67,7 @@ ENV \ # 1: yes BF_UPGRADE_PACKAGES=0 \ # Nushell version string to check against installed verion after installation - NU_VERSION=0.108.0 + NU_VERSION=0.109.1 RUN \ # delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone diff --git a/VERSION b/VERSION index 32f3eaa..acf69b4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.1 \ No newline at end of file +5.1.0 \ No newline at end of file diff --git a/VERSION_MINOR b/VERSION_MINOR index 6e63660..8336407 100644 --- a/VERSION_MINOR +++ b/VERSION_MINOR @@ -1 +1 @@ -5.0 \ No newline at end of file +5.1 \ No newline at end of file diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index fdf6499..51c2f3b 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,10 +4,10 @@ set -euo pipefail docker pull bfren/alpine -ALPINE_BRANCH="v3.0.2" +ALPINE_BRANCH="v3.1.0" BUSYBOX_VERSION="1.36.1" -BUSYBOX_BUILD="251121" -NU_VERSION="0.108.0" +BUSYBOX_BUILD="251204" +NU_VERSION="0.109.1" NU_BUILD="251121" DEBIAN_VERSIONS="12 13"