diff --git a/auth-service/dockerfile b/auth-service/dockerfile index 543234a..c74d73f 100644 --- a/auth-service/dockerfile +++ b/auth-service/dockerfile @@ -1,6 +1,7 @@ FROM golang:1.22-alpine as build WORKDIR /app + COPY . . RUN go build -o auth-service diff --git a/backend/dockerfile b/backend/dockerfile index a3dea18..612b050 100644 --- a/backend/dockerfile +++ b/backend/dockerfile @@ -1,6 +1,7 @@ FROM golang:1.22-alpine as build WORKDIR /app + COPY . . RUN go build -o backend