mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 17:13:45 +00:00
6 lines
174 B
Docker
6 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
|