optimized events
Test and publish container images / test (push) Successful in 2m26s
Test and publish container images / publish (push) Failing after 3s

This commit is contained in:
BuTzZ
2026-07-28 14:36:47 +02:00
parent b98ec8bc6f
commit 593dbd5f85
42 changed files with 2405 additions and 283 deletions
+21 -4
View File
@@ -1,13 +1,30 @@
FROM python:3.12-slim
FROM node:22-bookworm-slim
RUN apt-get update \
&& apt-get install --yes --no-install-recommends ca-certificates curl coreutils libexpat1 \
&& rm -rf /var/lib/apt/lists/* \
&& python3 -m pip install --no-cache-dir "osmium==4.3.1"
&& apt-get install --yes --no-install-recommends \
ca-certificates \
coreutils \
curl \
libexpat1 \
osmium-tool \
postgresql-client \
python3 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
RUN python3 -m pip install \
--break-system-packages \
--disable-pip-version-check \
--no-cache-dir \
--target /workspace/.tools/python \
"osmium==4.3.1" \
&& npm install --no-package-lock --no-save "pg@8.16.3"
COPY scripts ./scripts
COPY database ./database
COPY deploy/scripts/prepare-route-data.sh ./deploy/scripts/prepare-route-data.sh
COPY deploy/scripts/prepare-marine-features.sh ./deploy/scripts/prepare-marine-features.sh
ENTRYPOINT ["/workspace/deploy/scripts/prepare-route-data.sh"]