timetable-mgr/Dockerfile
Fred Boniface 01da611d26
All checks were successful
Go Test / test (push) Successful in 3m43s
Minor adjustments to test deployment
2024-04-28 08:38:53 +01:00

8 lines
173 B
Docker

FROM golang:alpine as builder
WORKDIR /source
COPY . .
RUN go build .
FROM scratch
COPY --from=builder /source/timetable-mgr /bin/timetable-mgr
CMD [ "/bin/timetable-mgr" ]