mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 17:36:14 +01:00
8b8b8a5a5e
As per the previous commit. Signed-off-by: Philip Withnall <pwithnall@gnome.org>
18 lines
285 B
Docker
18 lines
285 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v39.4
|
|
|
|
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
|