Skip to content

Commit

Permalink
[docker-images] build-essentials: explicitly install libc6:i386 for now
Browse files Browse the repository at this point in the history
For some reason randomly APT doesn't seem to properly pull in the dependency,
and this seem to anger some narcissist in the Telegram chat.

Signed-off-by: Eugenio Paolantonio (g7) <[email protected]>
  • Loading branch information
g7 committed Mar 10, 2024
1 parent e21c943 commit 1dacd0d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile.amd64_droidian_build_essential_trixie
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ RUN apt-get update && apt-get install -y --allow-downgrades \
rm -f /etc/apt/sources.list.d/hybris-mobian.list /etc/apt/sources.list.d/mobian.list && \
apt-get dist-upgrade -y --allow-downgrades

# FIXME: install libc6:i386
RUN apt-get install -y libc6:i386

# Patch dpkg-perl's Patch.pm to avoid overzealous checks
RUN \
sed -i \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.arm64_droidian_build_essential_trixie
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ RUN apt-get update && apt-get install -y --allow-downgrades \
rm -f /etc/apt/sources.list.d/hybris-mobian.list /etc/apt/sources.list.d/mobian.list && \
apt-get dist-upgrade -y --allow-downgrades

# FIXME: install libc6:i386
RUN apt-get install -y libc6:i386

# Patch dpkg-perl's Patch.pm to avoid overzealous checks
RUN \
sed -i \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.armhf_droidian_build_essential_trixie
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ RUN apt-get update && apt-get install -y --allow-downgrades \
rm -f /etc/apt/sources.list.d/hybris-mobian.list /etc/apt/sources.list.d/mobian.list && \
apt-get dist-upgrade -y --allow-downgrades

# FIXME: install libc6:i386
RUN apt-get install -y libc6:i386

# Patch dpkg-perl's Patch.pm to avoid overzealous checks
RUN \
sed -i \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.build-essential.in
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ RUN apt-get update && apt-get install -y --allow-downgrades \
rm -f /etc/apt/sources.list.d/hybris-mobian.list /etc/apt/sources.list.d/mobian.list && \
apt-get dist-upgrade -y --allow-downgrades

# FIXME: install libc6:i386
RUN apt-get install -y libc6:i386

# Patch dpkg-perl's Patch.pm to avoid overzealous checks
RUN \
sed -i \
Expand Down

0 comments on commit 1dacd0d

Please sign in to comment.