1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-25 13:48:49 +08:00
golearn/Dockerfile
2016-04-14 17:36:31 -05:00

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