taitools/Dockerfile
2024-02-06 03:24:58 -05:00

13 lines
256 B
Docker

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" ]