Skip to content

Commit

Permalink
update to stockfish 17
Browse files Browse the repository at this point in the history
  • Loading branch information
samuraitruong committed Nov 2, 2024
1 parent d5a4d75 commit 91ae9a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
packages: write
strategy:
matrix:
version: [15.1, 14.1, 16]
version: [15.1, 14.1, 16, 17]

runs-on: ubuntu-latest

Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM node:18-buster-slim as builder
ARG VERSION=16.0
ARG VERSION=17.0
ARG BUILD_PROFILE=x86-64-avx2
WORKDIR /chess

Expand All @@ -14,9 +14,9 @@ WORKDIR /chess/Stockfish-sf_$VERSION/src
RUN make net && make build ARCH=$BUILD_PROFILE


FROM node:18-buster-slim
ARG NODE_VERSION=18
ARG VERSION=16
FROM node:20-buster-slim
ARG NODE_VERSION=20
ARG VERSION=17
WORKDIR /app
COPY --from=builder /chess/Stockfish-sf_$VERSION/src/stockfish ./stockfish
ENV NODE_ENV=production
Expand Down

0 comments on commit 91ae9a5

Please sign in to comment.