FROM node:18-slim WORKDIR /usr/src/app RUN apt-get update && \ apt-get install -y stockfish --no-install-recommends && \ rm -rf /var/lib/apt/lists/* RUN npm install express chess.js COPY index.js ./ EXPOSE 7860 CMD ["node", "index.js"]