mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-07-20 16:47:33 +00:00
85 lines
3.1 KiB
Docker
85 lines
3.1 KiB
Docker
# Arguments
|
|
ARG fedora_version=38
|
|
|
|
# Builder
|
|
FROM fedora:${fedora_version} as builder
|
|
|
|
## Arguments
|
|
ARG fedora_version
|
|
|
|
## Install builder dependencies
|
|
RUN --mount=id=fedora:${fedora_version}-/var/cache/dnf,target=/var/cache/dnf,type=cache,sharing=locked \
|
|
echo "install_weak_deps=False" >> /etc/dnf/dnf.conf && \
|
|
echo "keepcache=True" >> /etc/dnf/dnf.conf && \
|
|
dnf --assumeyes install \
|
|
cairo-devel \
|
|
cmake \
|
|
gcc \
|
|
gcc-c++ \
|
|
glib2-devel \
|
|
httpd-devel \
|
|
iniparser-devel \
|
|
libcurl-devel \
|
|
libmemcached-devel \
|
|
librados-devel \
|
|
mapnik-devel \
|
|
procps
|
|
|
|
## Build, Test & Install `mod_tile`
|
|
COPY . /tmp/mod_tile_src
|
|
WORKDIR /tmp/mod_tile_build
|
|
RUN export CMAKE_BUILD_PARALLEL_LEVEL=$(nproc) && \
|
|
cmake -B . -S /tmp/mod_tile_src \
|
|
-DCMAKE_BUILD_TYPE:STRING=Release \
|
|
-DCMAKE_INSTALL_LOCALSTATEDIR=/var \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_RUNSTATEDIR=/run \
|
|
-DCMAKE_INSTALL_SYSCONFDIR=/etc \
|
|
-DENABLE_TESTS:BOOL=ON && \
|
|
cmake --build .
|
|
RUN export CTEST_PARALLEL_LEVEL=$(nproc) && \
|
|
export DESTDIR=/tmp/mod_tile && \
|
|
ctest --output-on-failure && \
|
|
(cmake --install . --strip || make DESTDIR=${DESTDIR} install/strip)
|
|
|
|
# Runner
|
|
FROM fedora:${fedora_version} as runner
|
|
|
|
## Arguments
|
|
ARG fedora_version
|
|
|
|
## Install runner dependencies
|
|
RUN --mount=id=fedora:${fedora_version}-/var/cache/dnf,target=/var/cache/dnf,type=cache,sharing=locked \
|
|
echo "install_weak_deps=False" >> /etc/dnf/dnf.conf && \
|
|
echo "keepcache=True" >> /etc/dnf/dnf.conf && \
|
|
dnf --assumeyes install \
|
|
cairo \
|
|
glib2 \
|
|
httpd \
|
|
iniparser \
|
|
libcurl \
|
|
libmemcached \
|
|
librados2 \
|
|
mapnik
|
|
|
|
## Copy files from builder(s)
|
|
### mod_tile
|
|
COPY --from=builder /tmp/mod_tile /
|
|
COPY --chown=apache:apache --from=builder \
|
|
/tmp/mod_tile_src/utils/example-map \
|
|
/usr/share/renderd/example-map
|
|
COPY --from=builder \
|
|
/tmp/mod_tile_src/etc/apache2/renderd-example-map.conf \
|
|
/etc/httpd/conf.d/renderd-example-map.conf
|
|
|
|
## Add configuration
|
|
RUN printf '\n[example-map]\nMAXZOOM=20\nMINZOOM=0\nURI=/tiles/renderd-example\nXML=/usr/share/renderd/example-map/mapnik.xml\n' >> /etc/renderd.conf
|
|
RUN printf '\n[example-map-jpg]\nMAXZOOM=20\nMINZOOM=0\nTYPE=jpg image/jpeg jpeg\nURI=/tiles/renderd-example-jpg\nXML=/usr/share/renderd/example-map/mapnik.xml\n' >> /etc/renderd.conf
|
|
RUN printf '\n[example-map-png256]\nMAXZOOM=20\nMINZOOM=0\nTYPE=png image/png png256\nURI=/tiles/renderd-example-png256\nXML=/usr/share/renderd/example-map/mapnik.xml\n' >> /etc/renderd.conf
|
|
RUN printf '\n[example-map-png32]\nMAXZOOM=20\nMINZOOM=0\nTYPE=png image/png png32\nURI=/tiles/renderd-example-png32\nXML=/usr/share/renderd/example-map/mapnik.xml\n' >> /etc/renderd.conf
|
|
RUN printf '\n[example-map-webp]\nMAXZOOM=20\nMINZOOM=0\nTYPE=webp image/webp webp\nURI=/tiles/renderd-example-webp\nXML=/usr/share/renderd/example-map/mapnik.xml\n' >> /etc/renderd.conf
|
|
|
|
## Start services
|
|
CMD httpd -e debug -k start; \
|
|
G_MESSAGES_DEBUG=${G_MESSAGES_DEBUG:-info} renderd --foreground
|