Merge pull request #176 from 0x0021/patch-3

修复node版本过高,Docker编译失败的问题
This commit is contained in:
bjdgyc 2022-11-03 10:49:34 +08:00 committed by GitHub
commit 46721b1453
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 \