mirror of
https://github.com/louislam/dockge.git
synced 2024-11-21 15:53:34 +01:00
Update to Node.js 22 from 18, as the upstream cpu 100% issues has been fixed.
This commit is contained in:
parent
9dd68372c2
commit
19beb02b1e
@ -1,5 +1,4 @@
|
||||
# Due to the bug of #145, Node.js's version cannot be changed, unless upstream is fixed.
|
||||
FROM node:18.17.1-bookworm-slim
|
||||
FROM node:22-bookworm-slim
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
RUN apt update && apt install --yes --no-install-recommends \
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user