Amogh1221 commited on
Commit
e6b2f51
·
1 Parent(s): ad547f4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -7
Dockerfile CHANGED
@@ -10,7 +10,6 @@ RUN apt-get update && apt-get install -y \
10
  curl \
11
  xz-utils \
12
  findutils \
13
- stockfish \
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
  # Set working directory
@@ -53,10 +52,6 @@ RUN LAUNCHER_PATH=$(find /app -name "main.py" | head -n 1) && \
53
  RUN if [ -f /app/output.nnue ]; then cp /app/output.nnue /app/engine_bin/output.nnue; fi && \
54
  if [ -f /app/small_output.nnue ]; then cp /app/small_output.nnue /app/engine_bin/small_output.nnue; fi
55
 
56
- # Download official Stockfish NNUE for analysis/review engine
57
- RUN wget -q -O /app/engine_bin/stockfish.nnue \
58
- https://tests.stockfishchess.org/api/nn/nn-9a0cc2a62c52.nnue
59
-
60
  # Force permissions
61
  RUN chmod -R 777 /app/engine_bin
62
 
@@ -72,8 +67,6 @@ RUN if [ -f /app/server/requirements.txt ]; then \
72
  # Explicit Paths
73
  ENV ENGINE_PATH=/app/engine_bin/deepcastle
74
  ENV DEEPCASTLE_ENGINE_PATH=/app/engine_bin/deepcastle
75
- ENV STOCKFISH_ENGINE_PATH=/usr/games/stockfish
76
- ENV STOCKFISH_NNUE_PATH=/app/engine_bin/stockfish.nnue
77
  ENV NNUE_PATH=/app/engine_bin/output.nnue
78
  ENV NNUE_SMALL_PATH=/app/engine_bin/small_output.nnue
79
  ENV PYTHONPATH="/app:/app/server"
 
10
  curl \
11
  xz-utils \
12
  findutils \
 
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
  # Set working directory
 
52
  RUN if [ -f /app/output.nnue ]; then cp /app/output.nnue /app/engine_bin/output.nnue; fi && \
53
  if [ -f /app/small_output.nnue ]; then cp /app/small_output.nnue /app/engine_bin/small_output.nnue; fi
54
 
 
 
 
 
55
  # Force permissions
56
  RUN chmod -R 777 /app/engine_bin
57
 
 
67
  # Explicit Paths
68
  ENV ENGINE_PATH=/app/engine_bin/deepcastle
69
  ENV DEEPCASTLE_ENGINE_PATH=/app/engine_bin/deepcastle
 
 
70
  ENV NNUE_PATH=/app/engine_bin/output.nnue
71
  ENV NNUE_SMALL_PATH=/app/engine_bin/small_output.nnue
72
  ENV PYTHONPATH="/app:/app/server"