1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-26 13:49:14 +08:00

Merge pull request #130 from briansorahan/master

add dockerfile
This commit is contained in:
Stephen Whitworth 2016-04-15 07:57:55 +01:00
commit 7912498413

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
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