From 3737145497051490bf1212cb292bde6db17494e3 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Mon, 26 Feb 2024 13:54:06 +0100 Subject: [PATCH] Containerfile: move "go install gtfstidy" instruction --- ci/container/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/container/Containerfile b/ci/container/Containerfile index db1edc74..fe506913 100644 --- a/ci/container/Containerfile +++ b/ci/container/Containerfile @@ -14,9 +14,10 @@ RUN apt-get update -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 GOBIN=/usr/local/bin/ go install github.com/patrickbr/gtfstidy@latest ENV PATH=/opt/motis:$PATH +RUN GOBIN=/usr/local/bin/ go install github.com/patrickbr/gtfstidy@latest + # Create the user / set user rights RUN groupadd --gid $USER_GID $USERNAME && \ useradd --uid $USER_UID --gid $USER_GID -m $USERNAME && \