2e7b218958
There are 2 reason for the bump: - Fedora 33 is not supported anymore - Some changes in the guest agent required updates of mingw-headers Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220525085953.940116-2-kkostiuk@redhat.com> Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
41 lines
823 B
Docker
41 lines
823 B
Docker
FROM registry.fedoraproject.org/fedora:35
|
|
|
|
# Please keep this list sorted alphabetically
|
|
ENV PACKAGES \
|
|
bc \
|
|
bzip2 \
|
|
ccache \
|
|
diffutils \
|
|
findutils \
|
|
gcc \
|
|
gettext \
|
|
git \
|
|
hostname \
|
|
make \
|
|
meson \
|
|
mingw32-nsis \
|
|
mingw64-bzip2 \
|
|
mingw64-curl \
|
|
mingw64-glib2 \
|
|
mingw64-gmp \
|
|
mingw64-gtk3 \
|
|
mingw64-libffi \
|
|
mingw64-libjpeg-turbo \
|
|
mingw64-libpng \
|
|
mingw64-libtasn1 \
|
|
mingw64-libusbx \
|
|
mingw64-pixman \
|
|
mingw64-pkg-config \
|
|
msitools \
|
|
perl \
|
|
python3 \
|
|
python3-PyYAML \
|
|
tar \
|
|
which
|
|
|
|
RUN dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|
|
|
|
# Specify the cross prefix for this image (see tests/docker/common.rc)
|
|
ENV QEMU_CONFIGURE_OPTS --cross-prefix=x86_64-w64-mingw32- --disable-capstone
|