This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:1.9-alpine3.6 | |
RUN apk add --update alpine-sdk cmake linux-headers | |
# Use an ARG to make it easier to test different versions | |
ARG OPENCV_VERSION=3.2.0 | |
# Download OpenCV | |
# Build OpenCV statically and without features we don't use | |
RUN mkdir -p /opencv && \ |