Compare commits

..

No commits in common. "43d89119bf9dfe2e48b8a6c7b58f3c1a4e143f76" and "493fb41da8c9c2ff00914ff45b1795de015728d5" have entirely different histories.

2 changed files with 3 additions and 5 deletions

View File

@ -9,8 +9,6 @@
*.dylib
message-logs
EXAMPLE_CIF_FILES
# Test binary, built with `go test -c`
*.test

View File

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