Very basic functionality

This commit is contained in:
2023-03-15 00:52:32 -04:00
commit 2a405850e3
7 changed files with 78 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM debian:11-slim
ARG STOCKFISH_VERSION=sf_15.1
RUN apt-get update && apt-get install -y \
git make curl g++ \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --quiet https://github.com/official-stockfish/Stockfish.git
RUN cd Stockfish/src \
&& git checkout --quiet ${STOCKFISH_VERSION} \
&& make -j build ARCH=x86-64-modern