FROM golang:latest LABEL maintainer="Marc Di Luzio " WORKDIR /app COPY . . RUN go mod download RUN go build -o rove-server ./... CMD "./rove-server"