summaryrefslogtreecommitdiff
path: root/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ci/containers/fedora-rawhide-cross-mingw64.Dockerfile')
-rw-r--r--ci/containers/fedora-rawhide-cross-mingw64.Dockerfile14
1 files changed, 6 insertions, 8 deletions
diff --git a/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile b/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile
index ab07260..bf32a56 100644
--- a/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile
+++ b/ci/containers/fedora-rawhide-cross-mingw64.Dockerfile
@@ -26,8 +26,6 @@ exec "$@"' > /usr/bin/nosync && \
glibc-langpack-en \
gtk-doc \
hwdata \
- intltool \
- itstool \
libxml2 \
make \
meson \
@@ -42,11 +40,7 @@ exec "$@"' > /usr/bin/nosync && \
wget \
xz && \
nosync dnf autoremove -y && \
- nosync dnf clean all -y && \
- rpm -qa | sort > /packages.txt && \
- mkdir -p /usr/libexec/ccache-wrappers && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/x86_64-w64-mingw32-cc && \
- ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/x86_64-w64-mingw32-gcc
+ nosync dnf clean all -y
RUN nosync dnf install -y \
mingw64-gcc \
@@ -56,7 +50,11 @@ RUN nosync dnf install -y \
mingw64-libxml2 \
mingw64-libxslt \
mingw64-pkg-config && \
- nosync dnf clean all -y
+ nosync dnf clean all -y && \
+ rpm -qa | sort > /packages.txt && \
+ mkdir -p /usr/libexec/ccache-wrappers && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/x86_64-w64-mingw32-cc && \
+ ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/x86_64-w64-mingw32-gcc
ENV LANG "en_US.UTF-8"
ENV MAKE "/usr/bin/make"