infrastructure/testhelper.Dockerfile
Finn Herzfeld ac5b78b752 Add testhlper.go, a tool for helping with tests
In this case all it does is retrieves verification codes
2018-12-05 12:03:40 -08:00

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"]