7 lines
150 B
Docker
7 lines
150 B
Docker
FROM golang:latest
|
|
COPY testhelper.go /
|
|
RUN go build testhelper.go
|
|
|
|
FROM scratch
|
|
COPY --from=build /testhelper /testhelper
|
|
ENTRYPOINT ["/testhelper"]
|