hardcoded node version due to bug "Text file busy" error introduced in node 20.3 (#1320)

Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
Peter Willemsen 2023-06-16 17:45:36 +02:00 committed by GitHub
parent af7c0abdba
commit 48ced9bd34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
FROM node:alpine as builder
FROM node:20.2-alpine as builder
RUN apk update && apk add curl yarn python3 build-base gcc wget git --no-cache
RUN curl -sf https://gobinaries.com/tj/node-prune | sh

View file

@ -1,4 +1,4 @@
FROM node:alpine as builder
FROM node:20.2-alpine as builder
RUN apk update && apk add curl yarn python3 build-base gcc wget git --no-cache
WORKDIR /usr/src/app