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/