mirror of
https://github.com/ApfelTeeSaft/vanilla.git
synced 2026-08-26 19:33:44 +00:00
15 lines
530 B
Docker
15 lines
530 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt -y update
|
|
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt -y install gcc-mingw-w64 g++-mingw-w64 git wget make nasm
|
|
|
|
# Install newer version of CMake
|
|
ENV CMAKE_VER=3.31.5
|
|
RUN wget https://github.com/Kitware/CMake/releases/download/v$CMAKE_VER/cmake-$CMAKE_VER-linux-$(uname -m).sh \
|
|
&& chmod +x cmake-$CMAKE_VER-linux-$(uname -m).sh \
|
|
&& ./cmake-$CMAKE_VER-linux-$(uname -m).sh --prefix=/usr --skip-license
|
|
|
|
COPY "mingw-w64-x86_64.cmake" "/"
|
|
|
|
ENTRYPOINT [ "/vanilla/docker/windows/build.sh" ]
|