taitools/Dockerfile

13 lines
256 B
Docker
Raw Permalink Normal View History

2024-02-06 08:24:58 +00:00
FROM fedora:36
LABEL description="Build environment for taitools"
RUN dnf -y install meson ninja-build make zip clang mingw64-gcc.x86_64 mingw32-gcc.x86_64 git
RUN mkdir /taitools
WORKDIR /taitools
VOLUME [ "/taitools" ]
ENTRYPOINT [ "make", "dist" ]