mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 03:51:20 +00:00
7 lines
174 B
Docker
7 lines
174 B
Docker
|
FROM golang:alpine
|
||
|
|
||
|
RUN apk add --no-cache git gcc musl-dev linux-headers
|
||
|
|
||
|
ADD . $GOPATH/src/github.com/karalabe/usb
|
||
|
RUN cd $GOPATH/src/github.com/karalabe/usb && go install
|