生产管理系统 - deploy文件夹修改
This commit is contained in:
47
Dockerfile.crop-x-new
Normal file
47
Dockerfile.crop-x-new
Normal file
@@ -0,0 +1,47 @@
|
||||
FROM registry.dev.maimaiag.com/library/node:20-alpine AS base
|
||||
RUN npm config set registry https://registry.npmmirror.com/
|
||||
|
||||
# Install dependencies only when needed
|
||||
FROM base AS deps
|
||||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
||||
RUN apk add --no-cache libc6-compat
|
||||
WORKDIR /app
|
||||
|
||||
# Install dependencies based on the preferred package manager
|
||||
COPY crop-x-new/package.json crop-x-new/package-lock.json ./
|
||||
RUN npm ci --registry=https://registry.npmmirror.com/
|
||||
|
||||
|
||||
# Rebuild the source code only when needed
|
||||
FROM base AS builder
|
||||
WORKDIR /app
|
||||
COPY --from=deps /app/node_modules ./node_modules
|
||||
COPY crop-x-new/ .
|
||||
RUN npm run build
|
||||
|
||||
# Production image, copy all the files and run next
|
||||
FROM base AS runner
|
||||
WORKDIR /app
|
||||
|
||||
ENV NODE_ENV=production
|
||||
ENV NEXT_TELEMETRY_DISABLED=1
|
||||
|
||||
RUN addgroup --system --gid 1001 nodejs
|
||||
RUN adduser --system --uid 1001 nextjs
|
||||
|
||||
# COPY --from=builder /app/public ./public
|
||||
|
||||
# Automatically leverage output traces to reduce image size
|
||||
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
||||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
||||
|
||||
USER nextjs
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
ENV PORT=3000
|
||||
|
||||
ENV HOSTNAME="0.0.0.0"
|
||||
|
||||
CMD ["node", "server.js"]
|
||||
@@ -10,7 +10,7 @@ var data = JSON.stringify({
|
||||
"git-revision": "main",
|
||||
"git-pat": "b6c02bf1aec73d7bbbfbe590ea37564a29c4bd5d",
|
||||
"docker-image-domain": "172.16.102.3:30648",
|
||||
"docker-dockerfile-path": "./Dockerfile.crop-x",
|
||||
"docker-dockerfile-path": "./Dockerfile.crop-x-new",
|
||||
"resource-cpu-limit": "500m",
|
||||
"resource-memory-limit": "512Mi",
|
||||
"resource-gpu-mem-limit": "",
|
||||
|
||||
Reference in New Issue
Block a user