Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Fix generate tyr-worker #3957

Merged
merged 1 commit into from
Mar 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docker/debian8/Dockerfile-tyr-worker
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ COPY mimirsbrunn7_*.deb ./
COPY cosmogony2cities_*.deb ./

# install navitia-common package
RUN dpkg -i ./navitia-common_*.deb || exit 0
RUN dpkg -i ./navitia-common_*.deb
RUN apt-get install -f -y --force-yes

# install navitia-tyr package
RUN dpkg -i ./navitia-tyr_*.deb || exit 0
RUN dpkg -i ./navitia-tyr_*.deb
RUN apt-get install -f -y --force-yes

# install navitia-ed package
RUN dpkg -i ./navitia-ed_*.deb || exit 0
RUN dpkg -i ./navitia-ed_*.deb
RUN apt-get install -f -y --force-yes

# install navitia-cities package
RUN dpkg -i ./navitia-cities_*.deb || exit 0
RUN dpkg -i ./navitia-cities_*.deb
RUN apt-get install -f -y --force-yes

# install navitia-mimirsbrunn package
RUN dpkg -i ./mimirsbrunn7_jessie-*.deb || exit 0
RUN dpkg -i ./mimirsbrunn7_jessie-*.deb
RUN apt-get install -f -y --force-yes

# install cosmogony2cities package
RUN dpkg -i ./cosmogony2cities*.deb || exit 0
RUN dpkg -i ./cosmogony2cities*.deb
RUN apt-get install -f -y --force-yes

# install tyr requirements
Expand Down