Skip to content

Commit 0ba7462

Browse files
authored
v5.2.17 (#151)
Minor updates * Using latest base images * Using new /test executable
1 parent 30ed428 commit 0ba7462

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
name: Run tests
6565
id: docker_test
6666
run: |
67-
docker run --entrypoint "/usr/bin/env" ${{ env.TEST_TAG }} -i nu -c "use bf test ; test"
67+
docker run --entrypoint /test ${{ env.TEST_TAG }}
6868
-
6969
name: Build and push
7070
id: docker_build

6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.15-5.4.14
1+
FROM ghcr.io/bfren/alpine-s6:alpine3.15-5.4.15
22

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

7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.14
1+
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.16
1+
5.2.17

generate-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_VERSION="5.4.14"
7+
BASE_VERSION="5.4.15"
88
echo "Base: ${BASE_VERSION}"
99

1010
REDIS_VERSIONS="6 7"

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ docker buildx build \
1313
-t ${TAG} \
1414
. \
1515
&& \
16-
docker run --entrypoint "/usr/bin/env" ${TAG} -i nu -c "use bf test ; test"
16+
docker run --entrypoint /test ${TAG}

0 commit comments

Comments
 (0)