18 lines
464 B
Docker
18 lines
464 B
Docker
FROM ghcr.io/osgeo/gdal:ubuntu-small-latest-amd64
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
cmake \
|
|
git \
|
|
wget \
|
|
sudo
|
|
|
|
RUN cd /opt && wget https://go.dev/dl/go1.20.linux-amd64.tar.gz && \
|
|
tar -xvf go1.20.linux-amd64.tar.gz && rm go1.20.linux-amd64.tar.gz
|
|
ENV GOROOT="/opt/go"
|
|
ENV PATH="/opt/go/bin:${PATH}"
|
|
|
|
RUN cd /opt && git clone -b v0.36.1 https://github.com/hybridgroup/gocv.git && cd gocv && \
|
|
make install
|
|
|