mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
13c3595363
That means Debian Bookworm and Fedora 37. Also rework the mingw Dockerfile to be based on the Fedora one, so that the underlying layers can be shared. This should reduce the disk consumption of the registry a little. `.gitlab-ci.yml` has not been updated to use the new images in this commit, as the images will be modified further in the following commit. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
17 lines
282 B
Docker
17 lines
282 B
Docker
FROM registry.gitlab.gnome.org/gnome/glib/fedora:v21
|
|
|
|
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 |