You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
260 B
Docker

FROM fedora:36
LABEL description="Build environment for segatools"
RUN dnf -y install meson ninja-build make zip clang mingw64-gcc.x86_64 mingw32-gcc.x86_64 git
RUN mkdir /segatools
WORKDIR /segatools
VOLUME [ "/segatools" ]
ENTRYPOINT [ "make", "dist" ]