peckertest/Dockerfile
2022-01-10 13:02:45 +01:00

10 lines
216 B
Docker

FROM golang:latest AS builder
WORKDIR /src
COPY go.mod .
RUN go mod download
COPY . .
RUN go build -o peckertest main.go
FROM alpine:latest
COPY --from=builder /src/peckertest /bin/peckertest
CMD ["/bin/peckertest"]