From c640a87a6ae5d14a3a3db95d7b1b63f7ae559363 Mon Sep 17 00:00:00 2001 From: Leonard Ehrenfried Date: Tue, 12 Nov 2024 21:17:59 +0100 Subject: [PATCH] Remove nominatim container during CI --- .github/workflows/ci.yml | 1 + 4.5/Dockerfile | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77b8706..acffbbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,6 +89,7 @@ jobs: # Stop container docker stop nominatim + docker ps # import to bind mount is done previously docker run -i --rm \ diff --git a/4.5/Dockerfile b/4.5/Dockerfile index 098e569..fba75d7 100644 --- a/4.5/Dockerfile +++ b/4.5/Dockerfile @@ -55,8 +55,7 @@ ARG NOMINATIM_VERSION ARG USER_AGENT # Osmium install to run continuous updates. -#RUN --mount=type=cache,target=/root/.cache/pip,sharing=locked pip install --break-system-packages \ -RUN pip install --break-system-packages \ +RUN --mount=type=cache,target=/root/.cache/pip,sharing=locked pip install --break-system-packages \ nominatim-db==$NOMINATIM_VERSION \ osmium \ psycopg[binary] \