From c851aad4f2531d43fb76697d4e1c5f40501ba61b Mon Sep 17 00:00:00 2001 From: Paramtamtam <7326800+tarampampam@users.noreply.github.com> Date: Sun, 17 Mar 2024 11:39:51 +0400 Subject: [PATCH] hotfix for the release error --- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33c208c..113dc9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,7 +81,7 @@ jobs: context: . file: Dockerfile push: true - platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm64/v8 build-args: "APP_VERSION=${{ steps.slug.outputs.version }}" tags: | tarampampam/error-pages:${{ steps.slug.outputs.version }} diff --git a/Dockerfile b/Dockerfile index 359832a..e0a1d76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # this stage is used to build the application -FROM golang:1.22-bullseye AS builder +FROM docker.io/library/golang:1.22-bookworm AS builder COPY ./go.* /src/