From ea3787c2bacc9acc4702735ff9340647594ad10a Mon Sep 17 00:00:00 2001 From: Lenshood Date: Fri, 25 Apr 2025 11:36:53 +0800 Subject: [PATCH] fix: dev.sh failed due to outdated configuration of Dockerfile (#8058) Co-authored-by: Engel Nyst --- containers/dev/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/containers/dev/Dockerfile b/containers/dev/Dockerfile index eee65f30e5..29118ff8cf 100644 --- a/containers/dev/Dockerfile +++ b/containers/dev/Dockerfile @@ -61,8 +61,8 @@ RUN add-apt-repository ppa:deadsnakes/ppa \ && apt-get install -y python3.12 python3.12-venv python3.12-dev python3-pip \ && ln -s /usr/bin/python3.12 /usr/bin/python -# NodeJS >= 18.17.1 -RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \ +# NodeJS >= 22.x +RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \ && apt-get install -y nodejs # Poetry >= 1.8 @@ -108,7 +108,7 @@ WORKDIR /app # cache build dependencies RUN \ - --mount=type=bind,source=./,target=/app/ \ + --mount=type=bind,source=./,target=/app/,rw \ <