Skip to content

Commit

Permalink
Use alpine 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
tkxkd0159 committed Jun 25, 2024
1 parent b1c2b5b commit 812631f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
env:
registry: docker.io
DOCKER_REPOSITORY: finschia/finschianode
RUNNER_BASE_IMAGE_ALPINE: alpine:3.17
RUNNER_BASE_IMAGE_ALPINE: alpine:3.18
jobs:
docker_build_and_push:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# > docker run -it -p 26656:26656 -p 26657:26657 -v ~/.finschia:/root/.finschia -v finschia/finschianode fnsad start --rpc.laddr=tcp://0.0.0.0:26657 --p2p.laddr=tcp://0.0.0.0:26656

ARG GO_VERSION="1.22"
ARG RUNNER_IMAGE="alpine:3.17"
ARG RUNNER_IMAGE="alpine:3.18"

FROM golang:${GO_VERSION}-alpine3.17 AS build-env
FROM golang:${GO_VERSION}-alpine3.18 AS build-env

ARG FINSCHIA_BUILD_OPTIONS=""
ARG GIT_VERSION
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ build-reproducible: go.sum
--build-arg GIT_VERSION=$(VERSION) \
--build-arg GIT_COMMIT=$(COMMIT) \
--build-arg OST_VERSION=$(OST_VERSION) \
--build-arg RUNNER_IMAGE=alpine:3.17 \
--build-arg RUNNER_IMAGE=alpine:3.18 \
--platform $(TARGET_PLATFORM) \
-t finschia/finschianode:local-$(ARCH) \
--load \
Expand Down Expand Up @@ -198,7 +198,7 @@ test-e2e-ibc:
### Docker ###
###############################################################################

RUNNER_BASE_IMAGE_ALPINE := alpine:3.17
RUNNER_BASE_IMAGE_ALPINE := alpine:3.18

docker-build:
@DOCKER_BUILDKIT=1 docker build \
Expand Down
4 changes: 2 additions & 2 deletions networks/local/finschianode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# > docker run -it -p 26656:26656 -p 26657:26657 -v ~/.finschia:/root/.finschia -v networks/local/finschianode fnsad start --rpc.laddr=tcp://0.0.0.0:26657 --p2p.laddr=tcp://0.0.0.0:26656

ARG GO_VERSION="1.22"
ARG RUNNER_IMAGE="alpine:3.17"
ARG RUNNER_IMAGE="alpine:3.18"

FROM golang:${GO_VERSION}-alpine3.17 AS build-env
FROM golang:${GO_VERSION}-alpine3.18 AS build-env

ARG FINSCHIA_BUILD_OPTIONS=""
ARG GIT_VERSION
Expand Down

0 comments on commit 812631f

Please sign in to comment.