mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-05 17:06:18 +01:00
64f7445232
Also start using a more reliable versioning scheme for the fedora images so that the tag is always vFEDORA_VERSION.IMAGE_VERSION to make it easier to understand on future updates Fixes: #3381
18 lines
285 B
Docker
18 lines
285 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v39.1
|
|
|
|
USER root
|
|
|
|
RUN dnf -y install \
|
|
mingw64-gcc \
|
|
mingw64-gcc-c++ \
|
|
mingw64-gettext \
|
|
mingw64-libffi \
|
|
mingw64-zlib \
|
|
&& dnf clean all
|
|
|
|
WORKDIR /opt
|
|
COPY cross_file_mingw64.txt /opt
|
|
|
|
USER user
|
|
WORKDIR /home/user
|