diff --git a/docker/website/Dockerfile b/docker/website/Dockerfile index 7969eed..d53a7b8 100644 --- a/docker/website/Dockerfile +++ b/docker/website/Dockerfile @@ -8,7 +8,7 @@ ARG NPM_REGISTRY=https://mirror.soroushasadi.com/repository/npm-group/ RUN npm install --legacy-peer-deps --ignore-scripts --registry ${NPM_REGISTRY} --strict-ssl=false \ && NEXT_VER=$(node -e "process.stdout.write(require('./node_modules/next/package.json').version)") \ && ls node_modules/@next/swc-linux-x64-musl 2>/dev/null \ - || npm install --no-save --ignore-scripts --registry ${NPM_REGISTRY} \ + || npm install --no-save --ignore-scripts --registry ${NPM_REGISTRY} --strict-ssl=false \ "@next/swc-linux-x64-musl@${NEXT_VER}" FROM ${NODE_IMAGE} AS builder