Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions 12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN \
echo "Platform: ${TARGETPLATFORM}" >> /log && \
echo "Debian: 12.12" >> /log && \
echo "Busybox: 1.36.1" >> /log && \
echo "Nushell: 0.107.0" >> /log
echo "Nushell: 0.108.0" >> /log


#======================================================================================================================
Expand All @@ -24,7 +24,7 @@ FROM ghcr.io/bfren/busybox:1.36.1-debian12.12-250606 AS busybox
# STAGE 2: load Nushell
#======================================================================================================================

FROM ghcr.io/bfren/nushell:0.107.0-bookworm-250606 AS nushell
FROM ghcr.io/bfren/nushell:0.108.0-bookworm-250606 AS nushell


#======================================================================================================================
Expand All @@ -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 v2.9.8 https://github.com/bfren/docker-alpine.git && \
apk add git && git clone --branch v2.9.9 https://github.com/bfren/docker-alpine.git && \
mv docker-alpine/overlay /


Expand Down Expand Up @@ -67,7 +67,7 @@ ENV \
# 1: yes
BF_UPGRADE_PACKAGES=0 \
# Nushell version string to check against installed verion after installation
NU_VERSION=0.107.0
NU_VERSION=0.108.0

RUN \
# delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone
Expand Down
8 changes: 4 additions & 4 deletions 13/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN \
echo "Platform: ${TARGETPLATFORM}" >> /log && \
echo "Debian: 13.1" >> /log && \
echo "Busybox: 1.36.1" >> /log && \
echo "Nushell: 0.107.0" >> /log
echo "Nushell: 0.108.0" >> /log


#======================================================================================================================
Expand All @@ -24,7 +24,7 @@ FROM ghcr.io/bfren/busybox:1.36.1-debian13.1-250606 AS busybox
# STAGE 2: load Nushell
#======================================================================================================================

FROM ghcr.io/bfren/nushell:0.107.0-trixie-250606 AS nushell
FROM ghcr.io/bfren/nushell:0.108.0-trixie-250606 AS nushell


#======================================================================================================================
Expand All @@ -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 v2.9.8 https://github.com/bfren/docker-alpine.git && \
apk add git && git clone --branch v2.9.9 https://github.com/bfren/docker-alpine.git && \
mv docker-alpine/overlay /


Expand Down Expand Up @@ -67,7 +67,7 @@ ENV \
# 1: yes
BF_UPGRADE_PACKAGES=0 \
# Nushell version string to check against installed verion after installation
NU_VERSION=0.107.0
NU_VERSION=0.108.0

RUN \
# delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.1
4.2.2
4 changes: 2 additions & 2 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ set -euo pipefail

docker pull bfren/alpine

ALPINE_BRANCH="v2.9.8"
ALPINE_BRANCH="v2.9.9"
BUSYBOX_VERSION="1.36.1"
BUSYBOX_BUILD="250606"
NU_VERSION="0.107.0"
NU_VERSION="0.108.0"
NU_BUILD="250606"
DEBIAN_VERSIONS="12 13"

Expand Down