|
@@ -9,6 +9,11 @@ RUN yarn install --frozen-lockfile
|
|
|
# Rebuild the source code only when needed
|
|
|
FROM node:alpine AS builder
|
|
|
WORKDIR /app
|
|
|
+
|
|
|
+# 添加这行
|
|
|
+ARG MONGODB_URI
|
|
|
+ENV MONGODB_URI=$MONGODB_URI
|
|
|
+
|
|
|
COPY . .
|
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
|
RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
|