1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 01:36:28 +00:00

Merge pull request #354 from wallabag/alpine318

Update base alpine to 3.18
This commit is contained in:
Jérémy Benoist
2023-07-24 10:31:52 +02:00
committed by GitHub

View File

@@ -5,11 +5,11 @@ FROM golang:alpine as builder
# flag -ldflags "-s -w" produces a smaller executable
RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.3.0
FROM alpine:3.17
FROM alpine:3.18
COPY --from=builder /go/bin/envsubst /usr/bin/envsubst
ARG WALLABAG_VERSION=2.6.1
ARG WALLABAG_VERSION=master
RUN set -ex \
&& apk add --no-cache \