Initial commit

This commit is contained in:
Astatin3
2024-04-30 22:07:50 -06:00
commit 8565caa62a
8463 changed files with 4915934 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Use a base image with MinGW-w64 installed, or start from a base Linux image and install MinGW-w64
FROM fedora:latest
# Install MinGW-w64 and other build tools
RUN dnf update -y && \
dnf install -y mingw64-gcc mingw64-gcc-c++ make cmake autoconf automake libtool && \
dnf clean all
# Set the WORKDIR to your project directory inside the container
WORKDIR /project
# By default, run a shell. You can override this command when running the container.
CMD ["/bin/bash"]