mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-25 13:48:49 +08:00
7 lines
315 B
Docker
7 lines
315 B
Docker
FROM alpine
|
|
RUN apk update && apk add make gcc linux-headers git perl musl-dev go
|
|
RUN git clone https://github.com/xianyi/OpenBLAS && cd OpenBLAS && make && make PREFIX=/usr install
|
|
RUN mkdir -p /go/src /go/bin /go/pkg
|
|
ENV GOPATH=/go
|
|
RUN go get github.com/gonum/blas github.com/sjwhitworth/golearn
|