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

add dockerfile

This commit is contained in:
Brian Sorahan 2016-04-14 17:36:31 -05:00
parent 07485b621d
commit 5fc488daff

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