@eht16 commented on this pull request.
> +COPY mingw64/bin/ /usr/local/bin/ +RUN ln -s /usr/local/pacman/bin/* /usr/local/bin/ && \ + mkdir /build + +WORKDIR /build +ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/pacman/lib/x86_64-linux-gnu + +# start wine to initially create config directory +RUN /usr/local/bin/mingw-w64-i686-wine hostname.exe && \ + /usr/local/bin/mingw-w64-x86_64-wine hostname.exe && \ + # install GTK3 and all its dependencies + pacman --noconfirm -Sy mingw-w64-x86_64-gtk3 && \ + # cleanup + apt-get clean && \ + rm -rf /var/lib/apt/lists/* && \ + yes | pacman -Scc && \ I guess you did not test what you suggest? `--noconfirm` does *not* clean the caches as the default for the question "Do you want to remove ALL files from cache? [y/N]" is no. In this context `yes` seems to work as intended. Did you experience a certain problem? -- Reply to this email directly or view it on GitHub: https://github.com/geany/infrastructure/pull/7#discussion_r975758529 You are receiving this because you are subscribed to this thread. Message ID: <geany/infrastructure/pull/7/review/[email protected]>
