42 lines
1.6 KiB
Docker
42 lines
1.6 KiB
Docker
# syntax=docker.io/docker/dockerfile:1.3@sha256:42399d4635eddd7a9b8a24be879d2f9a930d0ed040a61324cfdf59ef1357b3b2
|
|
FROM --platform=linux/amd64 docker.io/golang:1.17.5@sha256:90d1ab81f3d157ca649a9ff8d251691b810d95ea6023a03cdca139df58bca599 AS build
|
|
# libwasmvm.so is not compatible with arm
|
|
|
|
# Support additional root CAs
|
|
COPY go.mod cert.pem* /certs/
|
|
# Debian
|
|
RUN if [ -e /certs/cert.pem ]; then cp /certs/cert.pem /etc/ssl/certs/ca-certificates.crt; fi
|
|
# git
|
|
RUN if [ -e /certs/cert.pem ]; then git config --global http.sslCAInfo /certs/cert.pem; fi
|
|
|
|
WORKDIR /app
|
|
|
|
COPY tools tools
|
|
|
|
RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/go \
|
|
cd tools/ && go build -mod=readonly -o /dlv github.com/go-delve/delve/cmd/dlv
|
|
|
|
COPY . .
|
|
|
|
ARG GO_BUILD_ARGS=-race
|
|
|
|
RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/go \
|
|
go build ${GO_BUILD_ARGS} -gcflags="all=-N -l" --ldflags '-extldflags "-Wl,--allow-multiple-definition" -X "github.com/certusone/wormhole/node/cmd/guardiand.Build=dev"' -mod=readonly -o /guardiand github.com/certusone/wormhole/node && \
|
|
cp /go/pkg/mod/github.com/!cosm!wasm/wasmvm@v0.16.2/api/libwasmvm.so /usr/lib/
|
|
|
|
# Only export the final binary (+ shared objects). This reduces the image size
|
|
# from ~1GB to ~150MB.
|
|
FROM scratch as export
|
|
|
|
# guardiand can't (easily) be statically linked due to the C dependencies, so we
|
|
# have to copy all the dynamic libraries
|
|
COPY --from=build /bin/* /bin/
|
|
COPY --from=build /lib/* /lib/
|
|
COPY --from=build /lib64/* /lib64/
|
|
COPY --from=build /usr/lib/libwasmvm.so /usr/lib/
|
|
|
|
# finally copy the guardian executable
|
|
COPY --from=build /guardiand .
|
|
|
|
ENTRYPOINT ["/guardiand"]
|