Files
GenerationsHeritage/backend/dockerfile
2024-03-11 19:48:35 +01:00

13 lines
157 B
Plaintext

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