forked from grafana/cortex-jsonnet
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade alpine to 3.17 Signed-off-by: Friedrich Gonzalez <[email protected]> * Upgrade to golang 1.20 Signed-off-by: Friedrich Gonzalez <[email protected]> * Upgrade jsonnet to v0.20.0 Signed-off-by: Friedrich Gonzalez <[email protected]> * Upgrade to jsonnet-bundler v0.5.1 Signed-off-by: Friedrich Gonzalez <[email protected]> * Upgrade tanka to v0.24.0 Signed-off-by: Friedrich Gonzalez <[email protected]> * Update ci.yaml Signed-off-by: Friedrich Gonzalez <[email protected]> --------- Signed-off-by: Friedrich Gonzalez <[email protected]>
- Loading branch information
1 parent
ed6d0f2
commit 536ef90
Showing
3 changed files
with
19 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
# Build jsonnet | ||
FROM alpine:3.13 AS jsonnet-builder | ||
FROM alpine:3.17 AS jsonnet-builder | ||
RUN apk add --no-cache git make g++ | ||
RUN git clone https://github.com/google/jsonnet && \ | ||
git -C jsonnet checkout v0.15.0 && \ | ||
git -C jsonnet checkout v0.20.0 && \ | ||
make -C jsonnet 2LDFLAGS=-static && \ | ||
cp jsonnet/jsonnet /usr/bin && \ | ||
cp jsonnet/jsonnetfmt /usr/bin | ||
|
||
# Build jb | ||
FROM alpine:3.13 AS jb-builder | ||
ARG JSONNET_BUNDLER_VERSION=0.4.0 | ||
ARG JSONNET_BUNDLER_CHECKSUM="433edab5554a88a0371e11e93080408b225d41c31decf321c02b50d2e44993ce /usr/bin/jb" | ||
FROM alpine:3.17 AS jb-builder | ||
ARG JSONNET_BUNDLER_VERSION=0.5.1 | ||
ARG JSONNET_BUNDLER_CHECKSUM="f5bccc94d28fbbe8ad1d46fd4f208619e45d368a5d7924f6335f4ecfa0605c85 /usr/bin/jb" | ||
RUN apk add --no-cache curl | ||
RUN curl -fSL -o "/usr/bin/jb" "https://github.com/jsonnet-bundler/jsonnet-bundler/releases/download/v${JSONNET_BUNDLER_VERSION}/jb-linux-amd64" | ||
RUN echo "${JSONNET_BUNDLER_CHECKSUM}" | sha256sum -c || (printf "wanted: %s\n got: %s\n" "${JSONNET_BUNDLER_CHECKSUM}" "$(sha256sum /usr/bin/jb)"; exit 1) | ||
RUN chmod +x /usr/bin/jb | ||
|
||
# Build tanka | ||
FROM alpine:3.13 AS tk-builder | ||
ARG TANKA_VERSION=0.21.0 | ||
ARG TANKA_CHECKSUM="cd60a005f84fd99763f26d07d4cb626e7585a62800aae97234d8187129eed1ec /usr/bin/tk" | ||
FROM alpine:3.17 AS tk-builder | ||
ARG TANKA_VERSION=0.24.0 | ||
ARG TANKA_CHECKSUM="82c8c533c29eefea0af9c28f487203b19dec84ce2624702f99196e777f946ddc /usr/bin/tk" | ||
RUN apk add --no-cache curl | ||
RUN curl -fSL -o "/usr/bin/tk" "https://github.com/grafana/tanka/releases/download/v${TANKA_VERSION}/tk-linux-amd64" | ||
RUN echo "${TANKA_CHECKSUM}" | sha256sum -c || (printf "wanted: %s\n got: %s\n" "${TANKA_CHECKSUM}" "$(sha256sum /usr/bin/tk)"; exit 1) | ||
RUN chmod +x /usr/bin/tk | ||
|
||
# Build mixtool | ||
FROM golang:1.15-alpine AS mixtool-builder | ||
RUN GO111MODULE=on go get github.com/monitoring-mixins/mixtool/cmd/mixtool@ae18e31161ea10545b9c1ac0d23c10122f2c12b5 | ||
FROM golang:1.20-alpine AS mixtool-builder | ||
RUN GO111MODULE=on go install github.com/monitoring-mixins/mixtool/cmd/mixtool@ae18e31161ea10545b9c1ac0d23c10122f2c12b5 | ||
|
||
FROM alpine:3.13 | ||
RUN apk add --no-cache git make libgcc libstdc++ zip findutils sed | ||
FROM alpine:3.17 | ||
RUN apk add --no-cache git make libgcc libstdc++ zip findutils sed yq | ||
COPY --from=jsonnet-builder /usr/bin/jsonnetfmt /usr/bin | ||
COPY --from=jsonnet-builder /usr/bin/jsonnet /usr/bin | ||
COPY --from=jb-builder /usr/bin/jb /usr/bin | ||
COPY --from=tk-builder /usr/bin/tk /usr/bin | ||
COPY --from=mixtool-builder /go/bin/mixtool /usr/bin | ||
|
||
# Install yq. | ||
# TODO We can install it via apk once alpine 3.14 or above will be released. Previous versions don't package v4. | ||
RUN wget -O /usr/bin/yq https://github.com/mikefarah/yq/releases/download/v4.9.3/yq_linux_amd64 && \ | ||
chmod +x /usr/bin/yq |