diff --git a/CHANGELOG.md b/CHANGELOG.md index e7cb2fa5277..a95ea898707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ * `-query-scheduler.ring.etcd.*` * `-overrides-exporter.ring.etcd.*` * [FEATURE] Distributor, ingester, querier, query-frontend, store-gateway: add experimental support for native histograms. Requires that the experimental protobuf query result response format is enabled by `-query-frontend.query-result-response-format=protobuf` on the query frontend. #4286 #4352 #4354 #4376 #4377 #4387 #4396 #4425 #4442 #4494 #4512 #4513 #4526 +* [ENHANCEMENT] Add timezone information to Alpine Docker images. #4583 * [ENHANCEMENT] Allow to define service name used for tracing via `JAEGER_SERVICE_NAME` environment variable. #4394 * [ENHANCEMENT] Querier and query-frontend: add experimental, more performant protobuf query result response format enabled with `-query-frontend.query-result-response-format=protobuf`. #4304 #4318 #4375 * [ENHANCEMENT] Compactor: added experimental configuration parameter `-compactor.first-level-compaction-wait-period`, to configure how long the compactor should wait before compacting 1st level blocks (uploaded by ingesters). This configuration option allows to reduce the chances compactor begins compacting blocks before all ingesters have uploaded their blocks to the storage. #4401 diff --git a/cmd/metaconvert/Dockerfile b/cmd/metaconvert/Dockerfile index 2e1f473b784..a47d05f162d 100644 --- a/cmd/metaconvert/Dockerfile +++ b/cmd/metaconvert/Dockerfile @@ -4,7 +4,7 @@ # Provenance-includes-copyright: The Cortex Authors. FROM alpine:3.17.2 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates tzdata # Expose TARGETOS and TARGETARCH variables. These are supported by Docker when using BuildKit, but must be "enabled" using ARG. ARG TARGETOS ARG TARGETARCH diff --git a/cmd/mimir-continuous-test/Dockerfile b/cmd/mimir-continuous-test/Dockerfile index fd605613507..f08654d1271 100644 --- a/cmd/mimir-continuous-test/Dockerfile +++ b/cmd/mimir-continuous-test/Dockerfile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: AGPL-3.0-only FROM alpine:3.17.2 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates tzdata # Expose TARGETOS and TARGETARCH variables. These are supported by Docker when using BuildKit, but must be "enabled" using ARG. ARG TARGETOS ARG TARGETARCH diff --git a/cmd/mimir/Dockerfile b/cmd/mimir/Dockerfile index 1a469c108ff..29441608a30 100644 --- a/cmd/mimir/Dockerfile +++ b/cmd/mimir/Dockerfile @@ -4,7 +4,7 @@ # Provenance-includes-copyright: The Cortex Authors. FROM alpine:3.17.2 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates tzdata # Expose TARGETOS and TARGETARCH variables. These are supported by Docker when using BuildKit, but must be "enabled" using ARG. ARG TARGETOS ARG TARGETARCH diff --git a/cmd/mimirtool/Dockerfile b/cmd/mimirtool/Dockerfile index 10e46a5c48f..f0ded3c99a9 100644 --- a/cmd/mimirtool/Dockerfile +++ b/cmd/mimirtool/Dockerfile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: Apache-2.0 FROM alpine:3.17.2 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates tzdata # Expose TARGETOS and TARGETARCH variables. These are supported by Docker when using BuildKit, but must be "enabled" using ARG. ARG TARGETOS ARG TARGETARCH diff --git a/cmd/query-tee/Dockerfile b/cmd/query-tee/Dockerfile index efe2a0966ba..5b76ae29836 100644 --- a/cmd/query-tee/Dockerfile +++ b/cmd/query-tee/Dockerfile @@ -4,7 +4,7 @@ # Provenance-includes-copyright: The Cortex Authors. FROM alpine:3.17.2 -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates tzdata # Expose TARGETOS and TARGETARCH variables. These are supported by Docker when using BuildKit, but must be "enabled" using ARG. ARG TARGETOS ARG TARGETARCH