Disable CGO

Won't work in a scratch image
This commit is contained in:
Leopold Schabel 2020-02-04 22:39:59 +01:00
parent 08e7d1d792
commit 46650ade21
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ FROM golang:1.13 as builder
COPY . /opt
WORKDIR /opt
RUN go build -o /opt/bin/app github.com/certusone/solana_exporter/cmd/solana_exporter
RUN CGO_ENABLED=0 go build -o /opt/bin/app github.com/certusone/solana_exporter/cmd/solana_exporter
FROM scratch