From b441cdf6ca59555c203f4280e0cfd5688ccf26d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Thu, 28 Nov 2024 03:28:53 +0100 Subject: [PATCH] ci: Use patched MOTIS to fix import --- ci/container/Containerfile | 4 ++-- ci/container/Containerfile-devcontainer | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/container/Containerfile b/ci/container/Containerfile index eef5a777..074f3245 100644 --- a/ci/container/Containerfile +++ b/ci/container/Containerfile @@ -7,7 +7,7 @@ RUN GOPROXY=direct GOBIN=/usr/local/bin/ go install github.com/public-transport/ FROM docker.io/debian:bookworm-slim -ARG MOTIS_VERSION=v0.12.17 +ARG MOTIS_VERSION=v0.12.18.1 RUN apt-get update -y && \ apt-get install -y --no-install-recommends git python3-requests python3-jinja2 python3-pycountry wget bzip2 rsync openssh-client && \ @@ -15,5 +15,5 @@ RUN apt-get update -y && \ rm -rf /var/lib/apt/lists/* COPY --from=build /usr/local/bin/gtfsclean /usr/local/bin/gtfsclean -RUN wget -qO - https://github.com/motis-project/motis/releases/download/${MOTIS_VERSION}/motis-linux-amd64.tar.bz2 | tar -C /opt/ -jx +RUN wget -qO - https://github.com/jbruechert/motis/releases/download/${MOTIS_VERSION}/motis-linux-amd64.tar.bz2 | tar -C /opt/ -jx ENV PATH=/opt/motis:$PATH diff --git a/ci/container/Containerfile-devcontainer b/ci/container/Containerfile-devcontainer index 944a96cc..c848c436 100644 --- a/ci/container/Containerfile-devcontainer +++ b/ci/container/Containerfile-devcontainer @@ -6,7 +6,7 @@ RUN GOPROXY=direct GOBIN=/usr/local/bin/ go install github.com/public-transport/ FROM docker.io/debian:bookworm-slim -ARG MOTIS_VERSION=v0.12.17 +ARG MOTIS_VERSION=v0.12.18.1 ARG USERNAME=transitous ARG USER_UID=1000 ARG USER_GID=$USER_UID @@ -16,7 +16,7 @@ RUN apt-get update -y && \ apt-get clean -y && \ rm -rf /var/lib/apt/lists/* -RUN wget -qO - https://github.com/motis-project/motis/releases/download/${MOTIS_VERSION}/motis-linux-amd64.tar.bz2 | tar -C /opt/ -jx +RUN wget -qO - https://github.com/jbruechert/motis/releases/download/${MOTIS_VERSION}/motis-linux-amd64.tar.bz2 | tar -C /opt/ -jx COPY --from=build /usr/local/bin/gtfsclean /usr/local/bin/gtfsclean ENV PATH=/opt/motis:$PATH