Skip to content

Commit 9156249

Browse files
committed
Fix failures not failing
1 parent e3ccf28 commit 9156249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.20 AS buildstage
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.21 AS buildstage
44

55
ARG MOD_VERSION
66

@@ -11,14 +11,14 @@ RUN \
1111
| jq -r '.tag_name'); \
1212
fi && \
1313
if [ -z ${MOD_VERSION+x} ]; then \
14-
echo "**** Could not fetch current bouncer version from Github ****" \
14+
echo "**** Could not fetch current bouncer version from Github ****"; \
1515
exit 1; \
1616
fi && \
1717
curl -sLo \
1818
/root-layer/crowdsec-nginx-bouncer.tgz -L \
1919
"https://github.com/crowdsecurity/cs-nginx-bouncer/releases/download/${MOD_VERSION}/crowdsec-nginx-bouncer.tgz" && \
2020
if ! tar -tzf /root-layer/crowdsec-nginx-bouncer.tgz >/dev/null 2>&1; then \
21-
echo "**** Invalid tarball, could not download crowdsec bouncer ****" \
21+
echo "**** Invalid tarball, could not download crowdsec bouncer ****"; \
2222
exit 1; \
2323
fi
2424

0 commit comments

Comments
 (0)