timetable-mgr/Dockerfile
Fred Boniface 5b1ab9b12f
All checks were successful
Go Test / test (push) Successful in 43s
Fix logging of failed VSTP messages
2024-04-28 11:52:15 +01:00

9 lines
190 B
Docker

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