Update to Node.js 22 from 18, as the upstream cpu 100% issues has been fixed.

This commit is contained in:
Louis Lam
2024-10-13 20:36:04 +08:00
parent 9dd68372c2
commit 19beb02b1e
2 changed files with 8 additions and 2 deletions

View File

@@ -22,6 +22,13 @@ COPY --from=build /app/node_modules /app/node_modules
COPY --chown=node:node . .
RUN mkdir ./data
# It is just for safe, as by default, it is disabled in the latest Node.js now.
# Read more:
# - https://github.com/sagemathinc/cocalc/issues/6963
# - https://github.com/microsoft/node-pty/issues/630#issuecomment-1987212447
ENV UV_USE_IO_URING=0
VOLUME /app/data
EXPOSE 5001
HEALTHCHECK --interval=60s --timeout=30s --start-period=60s --retries=5 CMD extra/healthcheck