Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #7

Merged
merged 18 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/fullgeneration-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: Build and publish full generation Docker image
on:
workflow_dispatch:
inputs:
output_image_tag:
description: 'Output docker image tag'
required: true
corecpp_tag:
description: 'C++ library version'
required: true
generation_tag:
description: 'Generation tools tagged version'
required: true
Expand All @@ -18,11 +24,11 @@ on:
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.0'
default: '4.3'
styles_tag:
description: 'Styles tagged version'
required: true
default: '4.0'
default: '4.4'

jobs:
push_to_registry:
Expand All @@ -48,14 +54,15 @@ jobs:
push: true
file: build/fullgeneration/debian11.Dockerfile
tags: |
rok4/fullgeneration:${{ github.event.inputs.pregeneration_tag }}
rok4/fullgeneration:${{ github.event.inputs.output_image_tag }}
build-args: |
ROK4TILEMATRIXSETS_VERSION=${{ github.event.inputs.tilematrixsets_tag }}
ROK4COREPERL_VERSION=${{ github.event.inputs.coreperl_tag }}
ROK4PREGENERATION_VERSION=${{ github.event.inputs.pregeneration_tag }}
ROK4STYLES_VERSION=${{ github.event.inputs.styles_tag }}
ROK4GENERATION_VERSION=${{ github.event.inputs.generation_tag }}
ROK4TOOLS_VERSION=${{ github.event.inputs.tools_tag }}
ROK4CORECPP_VERSION=${{ github.event.inputs.corecpp_tag }}

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/generation-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ name: Build and publish generation Docker image
on:
workflow_dispatch:
inputs:
corecpp_tag:
description: 'C++ library version'
required: true
generation_tag:
description: 'Generation tools tagged version'
required: true
styles_tag:
description: 'Styles tagged version'
required: true
default: '4.0'
default: '4.4'

jobs:
push_to_registry:
Expand Down Expand Up @@ -39,6 +42,7 @@ jobs:
build-args: |
ROK4STYLES_VERSION=${{ github.event.inputs.styles_tag }}
ROK4GENERATION_VERSION=${{ github.event.inputs.generation_tag }}
ROK4CORECPP_VERSION=${{ github.event.inputs.corecpp_tag }}

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pregeneration-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.0'
default: '4.3'

jobs:
push_to_registry:
Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/pytools-docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build and publish python tools Docker image

on:
workflow_dispatch:
inputs:
pytools_tag:
description: 'Python tools tagged version'
required: true
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.3'

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: build/pytools/
push: true
file: build/pytools/debian11.Dockerfile
tags: |
rok4/pytools:${{ github.event.inputs.pytools_tag }}
build-args: |
ROK4TILEMATRIXSETS_VERSION=${{ github.event.inputs.tilematrixsets_tag }}
ROK4PYTOOLS_VERSION=${{ github.event.inputs.pytools_tag }}

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: rok4/pytools
short-description: 'Outils python de gestion du projet ROK4 : conversions, calcul de statistiques...'
readme-filepath: build/pytools/README.md
16 changes: 10 additions & 6 deletions .github/workflows/server-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ on:
workflow_dispatch:
inputs:
server_tag:
description: 'Server tagged version'
description: 'Server version'
required: true
corecpp_tag:
description: 'C++ library version'
required: true
styles_tag:
description: 'Styles tagged version'
description: 'Styles version'
required: true
default: '4.0'
default: '4.4'
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
description: 'Tile matrix sets version'
required: true
default: '4.0'
default: '4.3'

jobs:
push_to_registry:
Expand All @@ -37,13 +40,14 @@ jobs:
with:
context: build/server/
push: true
file: build/server/debian11.Dockerfile
file: build/server/ubuntu-2004.Dockerfile
tags: |
rok4/server:${{ github.event.inputs.server_tag }}
build-args: |
ROK4STYLES_VERSION=${{ github.event.inputs.styles_tag }}
ROK4TILEMATRIXSETS_VERSION=${{ github.event.inputs.tilematrixsets_tag }}
ROK4SERVER_VERSION=${{ github.event.inputs.server_tag }}
ROK4CORECPP_VERSION=${{ github.event.inputs.corecpp_tag }}

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
tilematrixsets_tag:
description: 'Tile matrix sets tagged version'
required: true
default: '4.0'
default: '4.3'

jobs:
push_to_registry:
Expand Down
10 changes: 8 additions & 2 deletions build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ Versions applicatives disponibles : https://github.com/rok4/tools/releases

`docker build -t rok4/fullgeneration:TAG --build-arg ROK4PREGENERATION_VERSION=TAG --build-arg ROK4COREPERL_VERSION=TAG --build-arg ROK4GENERATION_VERSION=TAG --build-arg ROK4TOOLS_VERSION=TAG -f fullgeneration/debian11.Dockerfile fullgeneration/`

## Compilation de l'image des outils python

Versions applicatives disponibles : https://github.com/rok4/pytools/releases

`docker build -t rok4/pytools:TAG --build-arg ROK4PYTOOLS_VERSION=TAG -f pytools/debian11.Dockerfile pytools/`

## Compilation de l'image du serveur de diffusion

Versions applicatives disponibles : https://github.com/rok4/server/releases
Versions applicatives disponibles : https://github.com/rok4/server/releases et https://github.com/rok4/core-cpp/releases

`docker build -t rok4/server:TAG --build-arg ROK4SERVER_VERSION=TAG -f server/debian11.Dockerfile server/`
`docker build -t rok4/server:TAG --build-arg ROK4SERVER_VERSION=TAG --build-arg ROK4CORECPP_VERSION=tag -f server/ubuntu-2004.Dockerfile server/`
4 changes: 2 additions & 2 deletions build/builder/build-artefact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ elif [[ $COMPONENT == "tilematrixsets" ]]; then
git clone --branch $VERSION --depth 1 --recursive https://github.com/rok4/tilematrixsets
fi

mkdir -p /rok4-tilematrixsets-$VERSION-linux-all/etc/rok4/tilematrixsets
cp /sources/tilematrixsets/*.json /rok4-tilematrixsets-$VERSION-linux-all/etc/rok4/tilematrixsets/
mkdir -p /rok4-tilematrixsets-$VERSION-linux-all/usr/share/rok4/tilematrixsets
cp /sources/tilematrixsets/*.json /rok4-tilematrixsets-$VERSION-linux-all/usr/share/rok4/tilematrixsets/

tar cvfz /artefacts/rok4-tilematrixsets-$VERSION-linux-all.tar.gz -C / rok4-tilematrixsets-$VERSION-linux-all

Expand Down
2 changes: 1 addition & 1 deletion build/fullgeneration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Cette image contient tous les outils de traitement et de gestion des pyramides de données, c'est à dire :

* les outil permettant d'écrire les scripts de génération ou de modification de pyramide ROK4 raster et vecteur. Ces outils font partie du projet, la documentation complète est disponible [ici](https://github.com/rok4/pregeneration), avec le code source.
* les outils permettant la manipulation des données images (reprojection, réechantillonnage, superposition...) ainsi que la mise au format final des données (écriture des dalles des pyramides ROK4). Ces outils font partie du projet, la documentation complète est disponible [ici](https://github.com/rok4/generation), avec le code source.
* les outils permettant la manipulation des données images (reprojection, réechantillonnage, superposition...) ainsi que la mise au format final des données (écriture des dalles des pyramides ROK4). Ces outils font partie du projet, la documentation complète est disponible [ici](https://rok4.github.io/generation).
* les outils facilitant la gestion des pyramides (suppression, statistiques), la création de descripteur de couche par défaut, ainsi qu'un outil de conversion basé sur les TMS. Ces outils font partie du projet, la documentation complète est disponible [ici](https://github.com/rok4/tools), avec le code source.
* l'outil [tippecanoe](https://github.com/mapbox/tippecanoe), permettant le calcul des tuiles vectorielles
* la suite d'outil GDAL, permettant l'extraction des données vecteur
Expand Down
22 changes: 14 additions & 8 deletions build/fullgeneration/debian11.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,38 @@ FROM ubuntu:20.04

RUN apt update && apt -y install curl procps wget gdal-bin

ARG ROK4TILEMATRIXSETS_VERSION=4.0
ARG ROK4TILEMATRIXSETS_VERSION=4.3
ENV ROK4TILEMATRIXSETS_VERSION=$ROK4TILEMATRIXSETS_VERSION
RUN curl -L -o rok4-tilematrixsets.deb https://github.com/rok4/tilematrixsets/releases/download/${ROK4TILEMATRIXSETS_VERSION}/rok4-tilematrixsets-${ROK4TILEMATRIXSETS_VERSION}-linux-all.deb && apt install ./rok4-tilematrixsets.deb
ENV ROK4_TMS_DIRECTORY=/etc/rok4/tilematrixsets
ENV ROK4_TMS_DIRECTORY=/usr/share/rok4/tilematrixsets

ARG ROK4STYLES_VERSION=4.0
ARG ROK4STYLES_VERSION=4.4
ENV ROK4STYLES_VERSION=$ROK4STYLES_VERSION
RUN curl -L -o rok4-styles.deb https://github.com/rok4/styles/releases/download/${ROK4STYLES_VERSION}/rok4-styles-${ROK4STYLES_VERSION}-linux-all.deb && apt install ./rok4-styles.deb

ARG ROK4CORECPP_VERSION
ENV ROK4CORECPP_VERSION=$ROK4CORECPP_VERSION
RUN curl -L -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/${ROK4CORECPP_VERSION}/librok4-ceph-${ROK4CORECPP_VERSION}-ubuntu-20.04-amd64.deb && apt install -y ./librok4-dev.deb

ARG ROK4GENERATION_VERSION
ENV ROK4GENERATION_VERSION=$ROK4GENERATION_VERSION
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu20.04-amd64.deb && apt install -y ./rok4-generation.deb
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu-20.04-amd64.deb && apt install -y ./rok4-generation.deb

ARG ROK4COREPERL_VERSION
ENV ROK4COREPERL_VERSION=$ROK4COREPERL_VERSION
RUN curl -L -o librok4-core-perl.deb https://github.com/rok4/core-perl/releases/download/${ROK4COREPERL_VERSION}/librok4-core-perl-${ROK4COREPERL_VERSION}-ubuntu20.04-all.deb && DEBIAN_FRONTEND=noninteractive apt install -y ./librok4-core-perl.deb
RUN curl -L -o librok4-core-perl.deb https://github.com/rok4/core-perl/releases/download/${ROK4COREPERL_VERSION}/librok4-core-perl-${ROK4COREPERL_VERSION}-ubuntu-20.04-all.deb && DEBIAN_FRONTEND=noninteractive apt install -y ./librok4-core-perl.deb

RUN curl -L -o libnet-amazon-s3-perl_0.991-1_all.deb http://archive.ubuntu.com/ubuntu/pool/universe/libn/libnet-amazon-s3-perl/libnet-amazon-s3-perl_0.991-1_all.deb && apt install -y ./libnet-amazon-s3-perl_0.991-1_all.deb && rm ./libnet-amazon-s3-perl_0.991-1_all.deb

ARG ROK4PREGENERATION_VERSION
ENV ROK4PREGENERATION_VERSION=$ROK4PREGENERATION_VERSION
RUN curl -L -o rok4-pregeneration.deb https://github.com/rok4/pregeneration/releases/download/${ROK4PREGENERATION_VERSION}/rok4-pregeneration-${ROK4PREGENERATION_VERSION}-ubuntu20.04-all.deb && apt install -y ./rok4-pregeneration.deb
RUN curl -L -o rok4-pregeneration.deb https://github.com/rok4/pregeneration/releases/download/${ROK4PREGENERATION_VERSION}/rok4-pregeneration-${ROK4PREGENERATION_VERSION}-ubuntu-20.04-all.deb && apt install -y ./rok4-pregeneration.deb

ARG ROK4TOOLS_VERSION
ENV ROK4TOOLS_VERSION=$ROK4TOOLS_VERSION
RUN curl -L -o rok4-tools.deb https://github.com/rok4/tools/releases/download/${ROK4TOOLS_VERSION}/rok4-tools-${ROK4TOOLS_VERSION}-ubuntu20.04-all.deb && apt install -y ./rok4-tools.deb
RUN curl -L -o rok4-tools.deb https://github.com/rok4/tools/releases/download/${ROK4TOOLS_VERSION}/rok4-tools-${ROK4TOOLS_VERSION}-ubuntu-20.04-all.deb && apt install -y ./rok4-tools.deb

COPY --from=metacollin/tippecanoe:latest /usr/local/bin/tippecanoe /usr/bin/tippecanoe
ENV TIPPECANOE_VERSION=v1.36.0

CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION\n\t- pregeneration: $ROK4PREGENERATION_VERSION\n\t- tools: $ROK4TOOLS_VERSION\n\t- core Perl: $ROK4COREPERL_VERSION\n\t- styles: $ROK4STYLES_VERSION\n\t- tile matrix sets: $ROK4TILEMATRIXSETS_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION\n\t- pregeneration: $ROK4PREGENERATION_VERSION\n\t- tools: $ROK4TOOLS_VERSION\n\t- core C++: $ROK4CORECPP_VERSION\n\t- core Perl: $ROK4COREPERL_VERSION\n\t- styles: $ROK4STYLES_VERSION\n\t- tile matrix sets: $ROK4TILEMATRIXSETS_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
2 changes: 1 addition & 1 deletion build/generation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Cette image contient tous les binaires permettant d'exécuter les scripts générés par les outils de pré-génération, c'est à dire :

* les outils permettant la manipulation des données images (reprojection, réechantillonnage, superposition...) ainsi que la mise au format final des données (écriture des dalles des pyramides ROK4). Ces outils font partie du projet, la documentation complète est disponible [ici](https://github.com/rok4/generation), avec le code source.
* les outils permettant la manipulation des données images (reprojection, réechantillonnage, superposition...) ainsi que la mise au format final des données (écriture des dalles des pyramides ROK4). Ces outils font partie du projet, la documentation complète est disponible [ici](https://rok4.github.io/generation).
* l'outil [tippecanoe](https://github.com/mapbox/tippecanoe), permettant le calcul des tuiles vectorielles
* la suite d'outil GDAL, permettant l'extraction des données vecteur

Expand Down
10 changes: 7 additions & 3 deletions build/generation/debian11.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ FROM ubuntu:20.04

RUN apt update && apt -y install curl procps wget gdal-bin

ARG ROK4STYLES_VERSION=4.0
ARG ROK4STYLES_VERSION=4.4
ENV ROK4STYLES_VERSION=$ROK4STYLES_VERSION
RUN curl -L -o rok4-styles.deb https://github.com/rok4/styles/releases/download/${ROK4STYLES_VERSION}/rok4-styles-${ROK4STYLES_VERSION}-linux-all.deb && apt install ./rok4-styles.deb

ARG ROK4CORECPP_VERSION
ENV ROK4CORECPP_VERSION=$ROK4CORECPP_VERSION
RUN curl -L -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/${ROK4CORECPP_VERSION}/librok4-ceph-${ROK4CORECPP_VERSION}-ubuntu-20.04-amd64.deb && apt install -y ./librok4-dev.deb

ARG ROK4GENERATION_VERSION
ENV ROK4GENERATION_VERSION=$ROK4GENERATION_VERSION
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu20.04-amd64.deb && apt install -y ./rok4-generation.deb
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu-20.04-amd64.deb && apt install -y ./rok4-generation.deb

COPY --from=metacollin/tippecanoe:latest /usr/local/bin/tippecanoe /usr/bin/tippecanoe
ENV TIPPECANOE_VERSION=v1.36.0

CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION\n\t- styles: $ROK4STYLES_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION- core C++: $ROK4CORECPP_VERSION\n\t\n\t- styles: $ROK4STYLES_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
10 changes: 7 additions & 3 deletions build/generation/debian12.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ FROM ubuntu:22.04

RUN apt update && apt -y install curl procps wget gdal-bin

ARG ROK4STYLES_VERSION=4.0
ARG ROK4STYLES_VERSION=4.4
ENV ROK4STYLES_VERSION=$ROK4STYLES_VERSION
RUN curl -L -o rok4-styles.deb https://github.com/rok4/styles/releases/download/${ROK4STYLES_VERSION}/rok4-styles-${ROK4STYLES_VERSION}-linux-all.deb && apt install ./rok4-styles.deb

ARG ROK4CORECPP_VERSION
ENV ROK4CORECPP_VERSION=$ROK4CORECPP_VERSION
RUN curl -L -o librok4-dev.deb https://github.com/rok4/core-cpp/releases/download/${ROK4CORECPP_VERSION}/librok4-ceph-${ROK4CORECPP_VERSION}-ubuntu-22.04-amd64.deb && apt install -y ./librok4-dev.deb

ARG ROK4GENERATION_VERSION
ENV ROK4GENERATION_VERSION=$ROK4GENERATION_VERSION
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu22.04-amd64.deb && apt install -y ./rok4-generation.deb
RUN curl -L -o rok4-generation.deb https://github.com/rok4/generation/releases/download/${ROK4GENERATION_VERSION}/rok4-generation-${ROK4GENERATION_VERSION}-ubuntu-22.04-amd64.deb && apt install -y ./rok4-generation.deb

COPY --from=metacollin/tippecanoe:latest /usr/local/bin/tippecanoe /usr/bin/tippecanoe
ENV TIPPECANOE_VERSION=v1.36.0

CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION\n\t- styles: $ROK4STYLES_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
CMD echo "ROK4:\n\t- generation: $ROK4GENERATION_VERSION- core C++: $ROK4CORECPP_VERSION\n\t\n\t- styles: $ROK4STYLES_VERSION\nTippecanoe: $TIPPECANOE_VERSION"
12 changes: 7 additions & 5 deletions build/pregeneration/debian11.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@ FROM ubuntu:20.04

RUN apt update && apt -y install curl procps wget gdal-bin

ARG ROK4TILEMATRIXSETS_VERSION=4.0
ARG ROK4TILEMATRIXSETS_VERSION=4.3
ENV ROK4TILEMATRIXSETS_VERSION=$ROK4TILEMATRIXSETS_VERSION
RUN curl -L -o rok4-tilematrixsets.deb https://github.com/rok4/tilematrixsets/releases/download/${ROK4TILEMATRIXSETS_VERSION}/rok4-tilematrixsets-${ROK4TILEMATRIXSETS_VERSION}-linux-all.deb && apt install ./rok4-tilematrixsets.deb
ENV ROK4_TMS_DIRECTORY=/etc/rok4/tilematrixsets
RUN curl -L -o rok4-tilematrixsets.deb https://github.com/rok4/tilematrixsets/releases/download/${ROK4TILEMATRIXSETS_VERSION}/rok4-tilematrixsets-${ROK4TILEMATRIXSETS_VERSION}-linux-all.deb && apt install ./rok4-tilematrixsets.deb && rm ./rok4-tilematrixsets.deb
ENV ROK4_TMS_DIRECTORY=/usr/share/rok4/tilematrixsets

ARG ROK4COREPERL_VERSION
ENV ROK4COREPERL_VERSION=$ROK4COREPERL_VERSION
RUN curl -L -o librok4-core-perl.deb https://github.com/rok4/core-perl/releases/download/${ROK4COREPERL_VERSION}/librok4-core-perl-${ROK4COREPERL_VERSION}-ubuntu20.04-all.deb && DEBIAN_FRONTEND=noninteractive apt install -y ./librok4-core-perl.deb
RUN curl -L -o librok4-core-perl.deb https://github.com/rok4/core-perl/releases/download/${ROK4COREPERL_VERSION}/librok4-core-perl-${ROK4COREPERL_VERSION}-ubuntu-20.04-all.deb && DEBIAN_FRONTEND=noninteractive apt install -y ./librok4-core-perl.deb && rm ./librok4-core-perl.deb

RUN curl -L -o libnet-amazon-s3-perl_0.991-1_all.deb http://snapshot.debian.org/archive/debian/20220718T213229Z/pool/main/libn/libnet-amazon-s3-perl/libnet-amazon-s3-perl_0.991-1_all.deb && apt install -y ./libnet-amazon-s3-perl_0.991-1_all.deb && rm ./libnet-amazon-s3-perl_0.991-1_all.deb

ARG ROK4PREGENERATION_VERSION
ENV ROK4PREGENERATION_VERSION=$ROK4PREGENERATION_VERSION
RUN curl -L -o rok4-pregeneration.deb https://github.com/rok4/pregeneration/releases/download/${ROK4PREGENERATION_VERSION}/rok4-pregeneration-${ROK4PREGENERATION_VERSION}-ubuntu20.04-all.deb && apt install -y ./rok4-pregeneration.deb
RUN curl -L -o rok4-pregeneration.deb https://github.com/rok4/pregeneration/releases/download/${ROK4PREGENERATION_VERSION}/rok4-pregeneration-${ROK4PREGENERATION_VERSION}-ubuntu-20.04-all.deb && apt install -y ./rok4-pregeneration.deb && rm ./rok4-pregeneration.deb

CMD echo "ROK4:\n\t- pregeneration: $ROK4PREGENERATION_VERSION\n\t- core Perl: $ROK4COREPERL_VERSION\n\t- tile matrix sets: $ROK4TILEMATRIXSETS_VERSION"
Loading
Loading