diff --git a/Dockerfile b/Dockerfile index ecbf030..da62302 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" ] \ No newline at end of file +COPY --from=builder /source/timetable-mgr /bin/timetable-mgr +CMD [ "/bin/timetable-mgr" ] \ No newline at end of file