Skip to content

Commit 4421ce1

Browse files
committed
security: update alpine base image to 3.20
1 parent 30b5ffa commit 4421ce1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Official docker image that includes binaries from releases.hashicorp.com. This
1717
# downloads the release from releases.hashicorp.com and therefore requires that
1818
# the release is published before building the Docker image.
19-
FROM docker.mirror.hashicorp.services/alpine:3.19 as official
19+
FROM docker.mirror.hashicorp.services/alpine:3.20 as official
2020

2121
# This is the release of Consul to pull in.
2222
ARG VERSION
@@ -112,7 +112,7 @@ CMD ["agent", "-dev", "-client", "0.0.0.0"]
112112

113113
# Production docker image that uses CI built binaries.
114114
# Remember, this image cannot be built locally.
115-
FROM docker.mirror.hashicorp.services/alpine:3.19 as default
115+
FROM docker.mirror.hashicorp.services/alpine:3.20 as default
116116

117117
ARG PRODUCT_VERSION
118118
ARG BIN_NAME

test/integration/connect/envoy/Dockerfile-tcpdump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.17
1+
FROM alpine:3.20
22

33
RUN apk add --no-cache tcpdump
44
VOLUME [ "/data" ]

test/integration/connect/envoy/helpers.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ function docker_consul_for_proxy_bootstrap {
652652
function docker_wget {
653653
local DC=$1
654654
shift 1
655-
docker run --rm --network container:envoy_consul-${DC}_1 docker.mirror.hashicorp.services/alpine:3.17 wget "$@"
655+
docker run --rm --network container:envoy_consul-${DC}_1 docker.mirror.hashicorp.services/alpine:3.20 wget "$@"
656656
}
657657

658658
function docker_curl {

0 commit comments

Comments
 (0)