Files
GenerationsHeritage/auth-service/dockerfile
2024-03-11 19:43:07 +01:00

12 lines
171 B
Plaintext

FROM golang:1.22-alpine as build
WORKDIR /app
COPY . .
RUN go build -o auth-service
FROM busybox
COPY --from=build /app/auth-service /app/
CMD [ "/app/auth-service" ]