mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
20 lines
369 B
Plaintext
20 lines
369 B
Plaintext
FROM golang:1.14-alpine as build
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
WORKDIR /src
|
|
|
|
RUN go get github.com/julienschmidt/httprouter
|
|
RUN go get github.com/sirupsen/logrus
|
|
RUN go get github.com/streadway/amqp
|
|
|
|
COPY publisher.go /src
|
|
|
|
RUN go build publisher.go
|
|
|
|
|
|
FROM alpine as runtime
|
|
|
|
COPY --from=build /src/publisher /app/publisher
|
|
|
|
CMD [ "/app/publisher" ] |