Branch: refs/heads/ci_builders_create_mtab Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 01 Oct 2023 10:58:37 UTC Commit: 52a5e88a710a7c3f504f6a4982113f617deb3bc4 https://github.com/geany/infrastructure/commit/52a5e88a710a7c3f504f6a4982113...
Log Message: ----------- Builders: Ensure /etc/mtab is available on Docker mingw64 image build
Modified Paths: -------------- builders/Dockerfile.mingw64
Modified: builders/Dockerfile.mingw64 5 lines changed, 3 insertions(+), 2 deletions(-) =================================================================== @@ -24,9 +24,10 @@ LABEL org.opencontainers.image.licenses="GPL-2.0"
# install native tools and libraries RUN set -ex && \ - dpkg --add-architecture i386 && \ # ensure /etc/mtab is available, pacman depends on it - ln -sf /proc/mounts /etc/mtab && \ + test -e /etc/mtab || ln -s /proc/mounts /etc/mtab && \ + # add i386 architecture for mingw64 + dpkg --add-architecture i386 && \ # add Debian backports for "pacman" package manager, can be removed after updating this image to Debian Bookworm echo "deb http://deb.debian.org/debian bullseye-backports main" > /etc/apt/sources.list.d/backports.list && \ apt-get update && \
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).