mirror of
https://gitea.tendokyu.moe/TeamTofuShop/bananatools.git
synced 2026-09-22 22:37:56 +03:00
13 lines
268 B
Docker
13 lines
268 B
Docker
FROM fedora:36
|
|
|
|
LABEL description="Build environment for bananatools"
|
|
|
|
RUN dnf -y install meson ninja-build make zip clang mingw64-gcc.x86_64 mingw32-gcc.x86_64 git
|
|
|
|
RUN mkdir /bananatools
|
|
WORKDIR /bananatools
|
|
|
|
VOLUME [ "/bananatools" ]
|
|
|
|
ENTRYPOINT [ "make", "dist" ]
|