Skip to content

Commit 736602c

Browse files
authored
v3.2.7 (#69)
Minor updates * Updating to Nushell 0.97.1
1 parent 4d214ca commit 736602c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

11/Dockerfile

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

1515

1616
#======================================================================================================================
1717
# STAGE 1: load Nushell
1818
#======================================================================================================================
1919

20-
FROM ghcr.io/bfren/nushell:0.96.1-bullseye as nushell
20+
FROM ghcr.io/bfren/nushell:0.97.1-bullseye as nushell
2121

2222

2323
#======================================================================================================================
@@ -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.5.8 https://github.com/bfren/docker-alpine.git && \
40+
apk add git && git clone --branch v2.5.9 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-
NUSHELL_VERSION=0.96.1
70+
NUSHELL_VERSION=0.97.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,14 +10,14 @@ RUN \
1010
echo "Platform: ${TARGETPLATFORM}" >> /log && \
1111
echo "Debian: 12.6" >> /log && \
1212
echo "Busybox: 1.36.1" >> /log && \
13-
echo "Nushell: 0.96.1" >> /log
13+
echo "Nushell: 0.97.1" >> /log
1414

1515

1616
#======================================================================================================================
1717
# STAGE 1: load Nushell
1818
#======================================================================================================================
1919

20-
FROM ghcr.io/bfren/nushell:0.96.1-bookworm as nushell
20+
FROM ghcr.io/bfren/nushell:0.97.1-bookworm as nushell
2121

2222

2323
#======================================================================================================================
@@ -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.5.8 https://github.com/bfren/docker-alpine.git && \
40+
apk add git && git clone --branch v2.5.9 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-
NUSHELL_VERSION=0.96.1
70+
NUSHELL_VERSION=0.97.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.2.6
1+
3.2.7

generate-dockerfiles.sh

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

55
docker pull bfren/alpine
66

7-
ALPINE_BRANCH="v2.5.8"
7+
ALPINE_BRANCH="v2.5.9"
88
BUSYBOX_VERSION="1.36.1"
9-
NUSHELL_VERSION="0.96.1"
9+
NUSHELL_VERSION="0.97.1"
1010
DEBIAN_VERSIONS="11 12"
1111

1212
for V in ${DEBIAN_VERSIONS} ; do

0 commit comments

Comments
 (0)