diff --git a/auth-service/dockerfile b/auth-service/dockerfile index a01bd27..ed1bc7e 100644 --- a/auth-service/dockerfile +++ b/auth-service/dockerfile @@ -3,6 +3,7 @@ FROM golang:1.22.2-alpine as build WORKDIR /app COPY . . +COPY ../utilities ../utilities RUN GOOS=linux GOARCH=arm64 go build -o auth-service diff --git a/backend/dockerfile b/backend/dockerfile index cf5f321..1209e3e 100644 --- a/backend/dockerfile +++ b/backend/dockerfile @@ -3,6 +3,7 @@ FROM golang:1.22.2-alpine as build WORKDIR /app COPY . . +COPY ../utilities ../utilities RUN GOOS=linux GOARCH=arm64 go build -o backend