Skip to content

Commit 425118a

Browse files
authored
v3.3.3 (#75)
Minor updates * Using latest Alpine branch * Updating to Nushell 0.99.1
1 parent 5f412bf commit 425118a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

11/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN \
1010
echo "Platform: ${TARGETPLATFORM}" >> /log && \
1111
echo "Debian: 11.11" >> /log && \
1212
echo "Busybox: 1.36.1" >> /log && \
13-
echo "Nushell: 0.99.0" >> /log
13+
echo "Nushell: 0.99.1" >> /log
1414

1515

1616
#======================================================================================================================
@@ -24,7 +24,7 @@ FROM ghcr.io/bfren/busybox:1.36.1-debian11.11-240913 AS busybox
2424
# STAGE 2: load Nushell
2525
#======================================================================================================================
2626

27-
FROM ghcr.io/bfren/nushell:0.99.0-bullseye-241005 AS nushell
27+
FROM ghcr.io/bfren/nushell:0.99.1-bullseye-241018 AS nushell
2828

2929

3030
#======================================================================================================================
@@ -37,7 +37,7 @@ WORKDIR /tmp
3737
RUN \
3838
# get the overlay from the Alpine base image
3939
echo "Cloning Alpine overlay." && \
40-
apk add git && git clone --branch v2.7.2 https://github.com/bfren/docker-alpine.git && \
40+
apk add git && git clone --branch v2.7.3 https://github.com/bfren/docker-alpine.git && \
4141
mv docker-alpine/overlay /
4242

4343

@@ -67,7 +67,7 @@ ENV \
6767
# 1: yes
6868
BF_UPGRADE_PACKAGES=0 \
6969
# Nushell version string to check against installed verion after installation
70-
NU_VERSION=0.99.0
70+
NU_VERSION=0.99.1
7171

7272
RUN \
7373
# delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone

12/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN \
1010
echo "Platform: ${TARGETPLATFORM}" >> /log && \
1111
echo "Debian: 12.7" >> /log && \
1212
echo "Busybox: 1.36.1" >> /log && \
13-
echo "Nushell: 0.99.0" >> /log
13+
echo "Nushell: 0.99.1" >> /log
1414

1515

1616
#======================================================================================================================
@@ -24,7 +24,7 @@ FROM ghcr.io/bfren/busybox:1.36.1-debian12.7-240913 AS busybox
2424
# STAGE 2: load Nushell
2525
#======================================================================================================================
2626

27-
FROM ghcr.io/bfren/nushell:0.99.0-bookworm-241005 AS nushell
27+
FROM ghcr.io/bfren/nushell:0.99.1-bookworm-241018 AS nushell
2828

2929

3030
#======================================================================================================================
@@ -37,7 +37,7 @@ WORKDIR /tmp
3737
RUN \
3838
# get the overlay from the Alpine base image
3939
echo "Cloning Alpine overlay." && \
40-
apk add git && git clone --branch v2.7.2 https://github.com/bfren/docker-alpine.git && \
40+
apk add git && git clone --branch v2.7.3 https://github.com/bfren/docker-alpine.git && \
4141
mv docker-alpine/overlay /
4242

4343

@@ -67,7 +67,7 @@ ENV \
6767
# 1: yes
6868
BF_UPGRADE_PACKAGES=0 \
6969
# Nushell version string to check against installed verion after installation
70-
NU_VERSION=0.99.0
70+
NU_VERSION=0.99.1
7171

7272
RUN \
7373
# delete all binaries that will be replaced by busybox - those in ${IGNORE} will be left alone

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.2
1+
3.3.3

generate-dockerfiles.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
ALPINE_BRANCH="v2.7.2"
7+
ALPINE_BRANCH="v2.7.3"
88
BUSYBOX_VERSION="1.36.1"
99
BUSYBOX_BUILD="240913"
10-
NU_VERSION="0.99.0"
11-
NU_BUILD="241005"
10+
NU_VERSION="0.99.1"
11+
NU_BUILD="241018"
1212
DEBIAN_VERSIONS="11 12"
1313

1414
for V in ${DEBIAN_VERSIONS} ; do

0 commit comments

Comments
 (0)