Skip to content

Commit

Permalink
v3.2.20 (#93)
Browse files Browse the repository at this point in the history
Minor updates
* Using latest base images
* Using new /test executable
  • Loading branch information
bfren authored Nov 22, 2024
1 parent 88089f9 commit ad8aa84
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
name: Run tests
id: docker_test
run: |
docker run --entrypoint "/usr/bin/env" ${{ env.TEST_TAG }} -i nu -c "use bf test ; test"
docker run --entrypoint /test ${{ env.TEST_TAG }}
-
name: Build and push
id: docker_build
Expand Down
2 changes: 1 addition & 1 deletion 16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.16-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.16-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion 17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.15-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.15-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion 18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.18-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.18-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion 19/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.17-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.17-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion 20/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion 21/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.14
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.19
3.2.20
2 changes: 1 addition & 1 deletion generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

docker pull bfren/alpine

BASE_VERSION="5.4.14"
BASE_VERSION="5.4.15"
echo "Base: ${BASE_VERSION}"

NODE_VERSIONS="16 17 18 19 20 21"
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ docker buildx build \
-t ${TAG} \
. \
&& \
docker run --entrypoint "/usr/bin/env" ${TAG} -i nu -c "use bf test ; test"
docker run --entrypoint /test ${TAG}

0 comments on commit ad8aa84

Please sign in to comment.