Skip to content

Commit

Permalink
build(deps): bump alpine from 3.19 to 3.20 (evmos#2569)
Browse files Browse the repository at this point in the history
* 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] <[email protected]>

* update deps

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tom <[email protected]>
Co-authored-by: Tom <[email protected]>
  • Loading branch information
3 people authored May 30, 2024
1 parent 48d7d40 commit e580b65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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/"; \
Expand All @@ -29,7 +29,7 @@ fi

RUN go install github.com/MinseokOh/toml-cli@latest

FROM alpine:3.19
FROM alpine:3.20

WORKDIR /root

Expand All @@ -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

Expand Down

0 comments on commit e580b65

Please sign in to comment.