From f484a271e298c8109ca8c58f1aff8f682c6e528e Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Mon, 13 May 2024 21:10:17 +0200 Subject: [PATCH] update docker images --- auth-service/dockerfile | 4 ++-- backend/dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/auth-service/dockerfile b/auth-service/dockerfile index a01bd27..80c9381 100644 --- a/auth-service/dockerfile +++ b/auth-service/dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-alpine as build +FROM arm64v8/golang:1.22.2-alpine as build WORKDIR /app @@ -6,7 +6,7 @@ COPY . . RUN GOOS=linux GOARCH=arm64 go build -o auth-service -FROM arm64v8/busybox +FROM arm64v8/busybox:1.36.1 COPY --from=build /app/auth-service /app/ diff --git a/backend/dockerfile b/backend/dockerfile index cf5f321..2af4a37 100644 --- a/backend/dockerfile +++ b/backend/dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-alpine as build +FROM arm64v8/golang:1.22.2-alpine as build WORKDIR /app @@ -6,7 +6,7 @@ COPY . . RUN GOOS=linux GOARCH=arm64 go build -o backend -FROM busybox +FROM arm64v8/busybox:1.36.1 COPY --from=build /app/backend /app/