13 lines
215 B
Plaintext
13 lines
215 B
Plaintext
FROM docker.io/library/golang:1.20.1 as build
|
|
|
|
COPY . /certs-test
|
|
|
|
WORKDIR /certs-test
|
|
|
|
RUN CGO_ENABLED=0 go build -v .
|
|
|
|
FROM scratch
|
|
COPY --from=build /certs-test/certs-test /certs-test
|
|
|
|
ENTRYPOINT ["/certs-test"]
|