diff --git a/Containerfile b/Containerfile index 11078d3..79be6ae 100644 --- a/Containerfile +++ b/Containerfile @@ -5,8 +5,8 @@ COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY . ./ -RUN CGO_ENABLED=0 GOOS=linux go build -o /app +RUN CGO_ENABLED=0 GOOS=linux go build -o backend FROM scratch -COPY --from=0 /app /app +COPY --from=0 /app/backend /app CMD ["/app"]