File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ .git
2+ build
Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ FROM ubuntu:18.04 as builder
55
66MAINTAINER Howard Butler <howard@hobu.co>
77
8- ARG PROJ_VERSION=master
98ARG DESTDIR="/build"
109
1110# Setup build env
1211RUN apt-get update -y \
1312 && apt-get install -y --fix-missing --no-install-recommends \
1413 software-properties-common build-essential ca-certificates \
15- git make cmake wget unzip libtool automake \
14+ make cmake wget unzip libtool automake \
1615 zlib1g-dev libsqlite3-dev pkg-config sqlite3 libcurl4-gnutls-dev \
1716 libtiff5-dev
1817
19- RUN git clone --depth 1 --single-branch https://github.com/OSGeo/PROJ.git \
20- && cd PROJ \
18+ COPY . /PROJ
19+
20+ RUN cd /PROJ \
2121 && ./autogen.sh \
2222 && ./configure --prefix=/usr \
2323 && make -j$(nproc) \
You can’t perform that action at this time.
0 commit comments