9d66a0eada
Fedora 33 was released on October 27, 2020. Update all the Fedora 32 images to this new release. Suggested-by: Daniel Berrangé <berrange@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210118181255.314672-1-philmd@redhat.com> Message-Id: <20210222101455.12640-3-alex.bennee@linaro.org>
38 lines
749 B
Docker
38 lines
749 B
Docker
FROM fedora:33
|
|
|
|
# Please keep this list sorted alphabetically
|
|
ENV PACKAGES \
|
|
bc \
|
|
bzip2 \
|
|
diffutils \
|
|
findutils \
|
|
gcc \
|
|
gettext \
|
|
git \
|
|
hostname \
|
|
make \
|
|
meson \
|
|
mingw64-bzip2 \
|
|
mingw64-curl \
|
|
mingw64-glib2 \
|
|
mingw64-gmp \
|
|
mingw64-gtk3 \
|
|
mingw64-libjpeg-turbo \
|
|
mingw64-libpng \
|
|
mingw64-libtasn1 \
|
|
mingw64-pixman \
|
|
mingw64-pkg-config \
|
|
perl \
|
|
perl-Test-Harness \
|
|
python3 \
|
|
python3-PyYAML \
|
|
tar \
|
|
which
|
|
|
|
RUN dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|
|
ENV FEATURES mingw
|
|
|
|
# Specify the cross prefix for this image (see tests/docker/common.rc)
|
|
ENV QEMU_CONFIGURE_OPTS --cross-prefix=x86_64-w64-mingw32- --disable-capstone
|