From e580b65f516cc31a4f3d8eb490f696c778c5030b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 May 2024 12:59:12 +0000 Subject: [PATCH] build(deps): bump alpine from 3.19 to 3.20 (#2569) * build(deps): bump alpine from 3.19 to 3.20 Bumps alpine from 3.19 to 3.20. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * update deps --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: tom Co-authored-by: Tom <54514587+GAtom22@users.noreply.github.com> --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6da1fda5c5..8a439f76f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3-alpine3.18 AS build-env +FROM golang:1.22.3-alpine3.20 AS build-env ARG DB_BACKEND=goleveldb ARG ROCKSDB_VERSION="8.11.3" @@ -7,7 +7,7 @@ WORKDIR /go/src/github.com/evmos/evmos COPY go.mod go.sum ./ -RUN set -eux; apk add --no-cache ca-certificates=20240226-r0 build-base=0.5-r3 git=2.40.1-r0 linux-headers=6.3-r0 bash=5.2.15-r5 +RUN set -eux; apk add --no-cache ca-certificates=20240226-r0 build-base=0.5-r3 git=2.45.1-r0 linux-headers=6.6-r0 bash=5.2.26-r0 RUN --mount=type=bind,target=. --mount=type=secret,id=GITHUB_TOKEN \ git config --global url."https://$(cat /run/secrets/GITHUB_TOKEN)@github.com/".insteadOf "https://github.com/"; \ @@ -29,7 +29,7 @@ fi RUN go install github.com/MinseokOh/toml-cli@latest -FROM alpine:3.19 +FROM alpine:3.20 WORKDIR /root @@ -41,7 +41,7 @@ COPY --from=build-env /target/usr/lib /usr/lib COPY --from=build-env /target/usr/local/lib /usr/local/lib COPY --from=build-env /target/usr/include /usr/include -RUN apk add --no-cache ca-certificates=20240226-r0 jq=1.7.1-r0 curl=8.5.0-r0 bash=5.2.21-r0 vim=9.0.2127-r0 lz4=1.9.4-r5 rclone=1.65.0-r3 \ +RUN apk add --no-cache ca-certificates=20240226-r0 jq=1.7.1-r0 curl=8.7.1-r0 bash=5.2.26-r0 vim=9.1.0414-r0 lz4=1.9.4-r5 rclone=1.66.0-r2 \ && addgroup -g 1000 evmos \ && adduser -S -h /home/evmos -D evmos -u 1000 -G evmos