mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 08:37:22 +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
|