map-dots/Dockerfile

8 lines
172 B
Docker

FROM golang:alpine as builder
WORKDIR /build
COPY . .
RUN go build
FROM alpine:latest
COPY --from=builder /build/map-dots /bin/map-dots
CMD [ "/bin/map-dots", "--server" ]