-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeo-ci
32 lines (25 loc) · 1.05 KB
/
geo-ci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# https://github.com/orgs/georust/packages/container/package/geo-ci
# ------------------------------------------------------------------------------
# Final stage
# ------------------------------------------------------------------------------
ARG RUST_VERSION
ARG PROJ_VERSION
FROM ghcr.io/georust/libproj-builder:proj-${PROJ_VERSION}-rust-${RUST_VERSION} as libproj-builder
FROM rust:$RUST_VERSION-bullseye
ARG RUST_VERSION
ARG PROJ_VERSION
RUN test -n "$RUST_VERSION" || (echo "RUST_VERSION ARG not set" && false)
RUN test -n "$PROJ_VERSION" || (echo "PROJ_VERSION ARG not set" && false)
# clang and libtiff5 are needed to build geo with `--features use-proj`
# note: I think we can remove clang if we make bindgen optional, see https://github.com/georust/proj-sys/issues/24
RUN apt-get update \
&& DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends \
ca-certificates \
clang \
cmake \
git \
libgeos-dev \
libtiff-dev \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
COPY --from=libproj-builder /build/usr /usr