2022-07-26 15:40:45 +00:00
|
|
|
FROM golang:latest AS build
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 go build ./cmd/bb
|
|
|
|
|
|
|
|
FROM scratch AS bin
|
2022-08-22 12:56:18 +00:00
|
|
|
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
COPY --from=build /src/bb /
|
|
|
|
ENTRYPOINT ["/bb"]
|