From 08261a74564ad721e2e71d9c1aa571207b644572 Mon Sep 17 00:00:00 2001 From: 170210 <85928898+170210@users.noreply.github.com> Date: Fri, 26 Jan 2024 16:01:46 +0900 Subject: [PATCH] fix: change docker image version to fix build error (#316) * fix: change docker image version to fix build error Signed-off-by: 170210 * chore: update changelog Signed-off-by: 170210 * fixup: fix for comment Signed-off-by: 170210 --------- Signed-off-by: 170210 --- CHANGELOG.md | 1 + Dockerfile | 2 +- networks/local/finschianode/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d19018e4..ca982c3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (repo) [\#295](https://github.com/Finschia/finschia/pull/295) setup CODEOWNERS and backport action * (ci) [\#296](https://github.com/Finschia/finschia/pull/296) bump actions/checkout from 3 to 4 * (ci) [\#305](https://github.com/Finschia/finschia/pull/305) add e2e-ibc ci +* (build) [\#316](https://github.com/Finschia/finschia/pull/316) change docker image version to fix build error ### Docs diff --git a/Dockerfile b/Dockerfile index 11088eb1..607632eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG GO_VERSION="1.20" ARG RUNNER_IMAGE="alpine:3.17" -FROM golang:${GO_VERSION}-alpine AS build-env +FROM golang:${GO_VERSION}-alpine3.17 AS build-env ARG FINSCHIA_BUILD_OPTIONS="" ARG GIT_VERSION diff --git a/networks/local/finschianode/Dockerfile b/networks/local/finschianode/Dockerfile index c4ae671e..a8c3d287 100644 --- a/networks/local/finschianode/Dockerfile +++ b/networks/local/finschianode/Dockerfile @@ -7,7 +7,7 @@ ARG GO_VERSION="1.20" ARG RUNNER_IMAGE="alpine:3.17" -FROM golang:${GO_VERSION}-alpine AS build-env +FROM golang:${GO_VERSION}-alpine3.17 AS build-env ARG FINSCHIA_BUILD_OPTIONS="" ARG GIT_VERSION