1
1
# syntax=docker/dockerfile:labs
2
- FROM --platform="$BUILDPLATFORM" alpine:3.20.3 AS frontend
2
+ FROM --platform="$BUILDPLATFORM" alpine:3.21.0 AS frontend
3
3
COPY frontend /app
4
4
COPY global/certbot-dns-plugins.json /app/certbot-dns-plugins.json
5
5
ARG NODE_ENV=production \
@@ -18,7 +18,7 @@ COPY darkmode.css /app/dist/css/darkmode.css
18
18
COPY security.txt /app/dist/.well-known/security.txt
19
19
20
20
21
- FROM --platform="$BUILDPLATFORM" alpine:3.20.3 AS build-backend
21
+ FROM --platform="$BUILDPLATFORM" alpine:3.21.0 AS build-backend
22
22
SHELL ["/bin/ash" , "-eo" , "pipefail" , "-c" ]
23
23
COPY backend /app
24
24
COPY global/certbot-dns-plugins.json /app/certbot-dns-plugins.json
@@ -37,15 +37,15 @@ RUN apk upgrade --no-cache -a && \
37
37
fi && \
38
38
yarn cache clean --all && \
39
39
clean-modules --yes
40
- FROM alpine:3.20.3 AS strip-backend
40
+ FROM alpine:3.21.0 AS strip-backend
41
41
COPY --from=build-backend /app /app
42
42
RUN apk upgrade --no-cache -a && \
43
43
apk add --no-cache ca-certificates binutils file && \
44
44
find /app/node_modules -name "*.node" -type f -exec strip -s {} \; && \
45
45
find /app/node_modules -name "*.node" -type f -exec file {} \;
46
46
47
47
48
- FROM --platform="$BUILDPLATFORM" alpine:3.20.3 AS crowdsec
48
+ FROM --platform="$BUILDPLATFORM" alpine:3.21.0 AS crowdsec
49
49
SHELL ["/bin/ash" , "-eo" , "pipefail" , "-c" ]
50
50
ARG CSNB_VER=v1.0.8
51
51
WORKDIR /src
0 commit comments