forked from forks/go-ethereum
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
|