Skip to content

Commit e050e20

Browse files
authored
fix: Fix Docker build hanging (#26547)
1 parent 29d25ae commit e050e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM base AS deps
2020
COPY package.json pnpm-lock.yaml ./
2121
# Make and such are needed to compile serialport for riscv64
2222
RUN apk add make gcc g++ python3 linux-headers npm && \
23-
npm install -g pnpm && \
23+
npm install -g pnpm@10.4.1 && \
2424
pnpm install --frozen-lockfile --no-optional && \
2525
# serialport has outdated prebuilds that appear to fail on some archs, force build on target platform
2626
rm -rf `find ./node_modules/.pnpm/ -wholename "*/@serialport/bindings-cpp/prebuilds" -type d` && \

0 commit comments

Comments
 (0)