2020-05-29 18:14:05 +01:00
|
|
|
FROM golang:latest
|
|
|
|
LABEL maintainer="Marc Di Luzio <marc.diluzio@gmail.com>"
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN go mod download
|
|
|
|
|
2020-06-02 15:54:22 +01:00
|
|
|
RUN go build -o rove-server -ldflags="-X version.Version=$(git describe --always --long --dirty)" .
|
|
|
|
|
|
|
|
CMD [ "./rove-server" ]
|
2020-05-29 18:14:05 +01:00
|
|
|
|