Skip to content

Commit

Permalink
Containerfile: move "go install gtfstidy" instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Feb 26, 2024
1 parent 271b017 commit 3737145
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/container/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 3737145

Please sign in to comment.