14 lines
478 B
Docker
14 lines
478 B
Docker
FROM ghcr.io/cross-rs/x86_64-pc-windows-gnu:main
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
cmake \
|
|
clang \
|
|
libclang-dev \
|
|
mingw-w64-tools \
|
|
mingw-w64-x86-64-dev \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& ln -sf windows.h /usr/x86_64-w64-mingw32/include/Windows.h \
|
|
&& ln -sf winsock2.h /usr/x86_64-w64-mingw32/include/WinSock2.h \
|
|
&& ln -sf ws2tcpip.h /usr/x86_64-w64-mingw32/include/WS2tcpip.h
|