Skip to content
Open
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
3 changes: 3 additions & 0 deletions ci/docker/debian-13-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ RUN apt-get update -y -q && \
tzdata \
tzdata-legacy \
zlib1g-dev && \
if [ ${arch} = "i386" ]; then \
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kou I decided to add this here instead of on the debian-python one because we do not install any debian packages there and we install everything on this base. Let me know if you would prefer us to have this dependency there instead I am 50-50 on where should this go.

apt-get install -y -q --no-install-recommends rustc cargo; \
fi && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

Expand Down
Loading