Skip to content

Commit

Permalink
v3.2.7 (#69)
Browse files Browse the repository at this point in the history
Minor updates
* Updating to Nushell 0.97.1
  • Loading branch information
bfren authored Aug 30, 2024
1 parent 4d214ca commit 736602c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions 11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ RUN \
echo "Platform: ${TARGETPLATFORM}" >> /log && \
echo "Debian: 11.10" >> /log && \
echo "Busybox: 1.36.1" >> /log && \
echo "Nushell: 0.96.1" >> /log
echo "Nushell: 0.97.1" >> /log


#======================================================================================================================
# STAGE 1: load Nushell
#======================================================================================================================

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

Check warning on line 20 in 11/Dockerfile

View workflow job for this annotation

GitHub Actions / build (11)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 11/Dockerfile

View workflow job for this annotation

GitHub Actions / build (11)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 11/Dockerfile

View workflow job for this annotation

GitHub Actions / publish (11)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/


#======================================================================================================================
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.5.8 https://github.com/bfren/docker-alpine.git && \
apk add git && git clone --branch v2.5.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
NUSHELL_VERSION=0.96.1
NUSHELL_VERSION=0.97.1

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 12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ RUN \
echo "Platform: ${TARGETPLATFORM}" >> /log && \
echo "Debian: 12.6" >> /log && \
echo "Busybox: 1.36.1" >> /log && \
echo "Nushell: 0.96.1" >> /log
echo "Nushell: 0.97.1" >> /log


#======================================================================================================================
# STAGE 1: load Nushell
#======================================================================================================================

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

Check warning on line 20 in 12/Dockerfile

View workflow job for this annotation

GitHub Actions / build (12)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 12/Dockerfile

View workflow job for this annotation

GitHub Actions / build (12)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 12/Dockerfile

View workflow job for this annotation

GitHub Actions / build (12)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 12/Dockerfile

View workflow job for this annotation

GitHub Actions / publish (12)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 20 in 12/Dockerfile

View workflow job for this annotation

GitHub Actions / publish (12)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/


#======================================================================================================================
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.5.8 https://github.com/bfren/docker-alpine.git && \
apk add git && git clone --branch v2.5.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
NUSHELL_VERSION=0.96.1
NUSHELL_VERSION=0.97.1

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 @@
3.2.6
3.2.7
4 changes: 2 additions & 2 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ set -euo pipefail

docker pull bfren/alpine

ALPINE_BRANCH="v2.5.8"
ALPINE_BRANCH="v2.5.9"
BUSYBOX_VERSION="1.36.1"
NUSHELL_VERSION="0.96.1"
NUSHELL_VERSION="0.97.1"
DEBIAN_VERSIONS="11 12"

for V in ${DEBIAN_VERSIONS} ; do
Expand Down

0 comments on commit 736602c

Please sign in to comment.