mirror of
https://github.com/Astatin3/meteorbot-old.git
synced 2026-06-09 00:28:06 -06:00
Initial commit
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user