Skip to content

chore(deps): update alpine docker tag to v3.21 #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15 as vmod-builder
FROM alpine:3.21 as vmod-builder
WORKDIR /build
RUN apk update
RUN apk add --quiet ca-certificates curl wget tar gzip jq
Expand All @@ -11,7 +11,7 @@ RUN ./configure --with-rst2man=: || cat config.log && \
make check && \
make install

FROM alpine:3.15 as prometheus-exporter-builder
FROM alpine:3.21 as prometheus-exporter-builder

WORKDIR /build
RUN apk update
Expand All @@ -24,7 +24,7 @@ RUN /prometheus_varnish_exporter -version

FROM hairyhenderson/gomplate as gomplate

FROM alpine:3.15
FROM alpine:3.21
MAINTAINER Frode Egeland <[email protected]>
ENV REFRESHED_AT 2017-11-02
ENV VARNISH_BACKEND_ADDRESS 192.168.1.65
Expand Down