Compare commits

...

2 Commits

Author SHA1 Message Date
Fred Boniface 43d89119bf Update dockerignore
Go Test / test (push) Failing after 44s Details
2024-04-05 22:28:54 +01:00
Fred Boniface 426c5f02e8 Update dockerfile for new repo layout 2024-04-05 22:28:30 +01:00
2 changed files with 5 additions and 3 deletions

View File

@ -9,6 +9,8 @@
*.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 ./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" ]