feat: 增加 docker compose 文件的镜像支持
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
FROM node:22-alpine
|
||||
|
||||
# Use Chinese mirrors for faster package installation
|
||||
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apk/repositories
|
||||
RUN npm config set registry https://registry.npmmirror.com/
|
||||
|
||||
RUN apk add --no-cache libc6-compat
|
||||
|
||||
# Set working directory
|
||||
@@ -8,6 +12,7 @@ WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
RUN corepack enable pnpm && pnpm add -g turbo
|
||||
RUN pnpm config set registry https://registry.npmmirror.com/
|
||||
RUN pnpm install
|
||||
|
||||
EXPOSE 3002
|
||||
|
||||
Reference in New Issue
Block a user