docker builder

This commit is contained in:
nuknal
2024-06-13 10:18:04 +08:00
parent a4975d49b8
commit ee427949e3
6 changed files with 40 additions and 3 deletions

View File

@@ -1,17 +0,0 @@
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
RUN cd /sjy01/image-proc && go mod download && make linux

3
build/build-in-docker.sh Normal file
View File

@@ -0,0 +1,3 @@
# !/bin/bash
cd /src && go mod download && make linux