Merge pull request #42 from asymmetric-research/fix-dockerfile
docker: fix go package path
This commit is contained in:
commit
380a3c7da4
|
@ -3,7 +3,7 @@ FROM golang:1.22 as builder
|
||||||
COPY . /opt
|
COPY . /opt
|
||||||
WORKDIR /opt
|
WORKDIR /opt
|
||||||
|
|
||||||
RUN CGO_ENABLED=0 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/asymmetric-research/solana_exporter/cmd/solana_exporter
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue