Update Dockerfile

不支持node18,更换Docker中指定的node版本
This commit is contained in:
坤子 2022-11-03 08:42:41 +08:00 committed by GitHub
parent 4a7d534981
commit 36cb865bad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# web
FROM node:lts-alpine as builder_node
FROM node:16.17.1-alpine3.15 as builder_node
WORKDIR /web
COPY ./web /web
RUN yarn install \