realtime-state / Dockerfile
nirkyy's picture
Update Dockerfile
25f5b9c verified
raw
history blame contribute delete
249 Bytes
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"]