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 FROM golang:alpine as builder
WORKDIR /source WORKDIR /source
COPY ./src . COPY . .
RUN go build . RUN go build .
FROM scratch FROM scratch
COPY --from=builder /source/mq-client /bin/mq-client COPY --from=builder /source/timetable-mgr /bin/timetable-mgr
CMD [ "/bin/mq-client" ] CMD [ "/bin/timetable-mgr" ]