timetable-extension #1

Open
fred.boniface wants to merge 144 commits from timetable-extension into main
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 426c5f02e8 - Show all commits

View File

@ -1,8 +1,8 @@
FROM golang:alpine as builder
WORKDIR /source
COPY ./src .
COPY . .
RUN go build .
FROM scratch
COPY --from=builder /source/mq-client /bin/mq-client
CMD [ "/bin/mq-client" ]
COPY --from=builder /source/timetable-mgr /bin/timetable-mgr
CMD [ "/bin/timetable-mgr" ]