perf(docker): 优化Dockerfile构建,避免最后chown整个目录
- 在build阶段提前创建用户和设置目录权限 - 使用--chown=nestjs:nodejs复制文件 - 删除chown -R nestjs:nodejs /app 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
b1508f1a5a
commit
86d3a3f6a2
|
|
@ -33,7 +33,9 @@ RUN ls -la dist/ && test -f dist/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -41,16 +43,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema and generate client (dummy DATABASE_URL for build time only)
|
# Copy Prisma schema and generate client (dummy DATABASE_URL for build time only)
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN printf '%s\n' \
|
RUN printf '%s\n' \
|
||||||
|
|
@ -62,15 +71,7 @@ RUN printf '%s\n' \
|
||||||
'exec node dist/main.js' \
|
'exec node dist/main.js' \
|
||||||
> /app/start.sh && chmod +x /app/start.sh
|
> /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
ENV NODE_ENV=production
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
EXPOSE 3010
|
EXPOSE 3010
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,9 @@ RUN ls -la dist/ && test -f dist/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -41,16 +43,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema and generate client
|
# Copy Prisma schema and generate client
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that syncs schema before starting the app
|
# Create startup script that syncs schema before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -60,16 +69,6 @@ npx prisma db push --skip-generate\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,9 @@ RUN ls -la dist/src/ && test -f dist/src/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim AS production
|
FROM node:20-slim AS production
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -44,16 +46,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Copy package files and install production dependencies
|
# Copy package files and install production dependencies
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma files and generate client (dummy DATABASE_URL for build time only)
|
# Copy Prisma files and generate client (dummy DATABASE_URL for build time only)
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built application
|
# Copy built application
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -63,16 +72,6 @@ npx prisma migrate deploy || npx prisma db push --accept-data-loss\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,9 @@ RUN ls -la dist/ && test -f dist/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -39,33 +41,33 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
|
||||||
|
# Create temp directory for TSS
|
||||||
|
RUN mkdir -p /tmp/tss && chown nestjs:nodejs /tmp/tss
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema, migrations and generate client
|
# Copy Prisma schema, migrations and generate client
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Copy entrypoint script
|
# Copy entrypoint script
|
||||||
COPY docker-entrypoint.sh ./
|
COPY --chown=nestjs:nodejs docker-entrypoint.sh ./
|
||||||
RUN chmod +x docker-entrypoint.sh
|
RUN chmod +x docker-entrypoint.sh
|
||||||
|
|
||||||
# Create non-root user
|
ENV NODE_ENV=production
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Create temp directory for TSS
|
|
||||||
RUN mkdir -p /tmp/tss && chown -R nestjs:nodejs /tmp/tss
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
EXPOSE 3006
|
EXPOSE 3006
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,9 @@ RUN ls -la dist/ && test -f dist/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -41,16 +43,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema and generate client
|
# Copy Prisma schema and generate client
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -60,16 +69,6 @@ npx prisma migrate deploy || npx prisma db push --accept-data-loss\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,9 @@ RUN ls -la dist/src/ && test -f dist/src/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -46,16 +48,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema and generate client (dummy DATABASE_URL for build time only)
|
# Copy Prisma schema and generate client (dummy DATABASE_URL for build time only)
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -65,16 +74,6 @@ npx prisma migrate deploy || npx prisma db push --accept-data-loss\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,9 @@ RUN ls -la dist/src/ && test -f dist/src/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -44,16 +46,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm ci --only=production
|
RUN npm ci --only=production
|
||||||
|
|
||||||
# Copy Prisma schema and generate client
|
# Copy Prisma schema and generate client
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -63,16 +72,6 @@ npx prisma migrate deploy || npx prisma db push --accept-data-loss\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/src/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,9 @@ RUN ls -la dist/ && test -f dist/main.js
|
||||||
# Production stage - use Debian slim for OpenSSL compatibility
|
# Production stage - use Debian slim for OpenSSL compatibility
|
||||||
FROM node:20-slim
|
FROM node:20-slim
|
||||||
|
|
||||||
WORKDIR /app
|
# Create non-root user with home directory (npm cache needs it)
|
||||||
|
RUN groupadd -g 1001 nodejs && \
|
||||||
|
useradd -u 1001 -g nodejs -m nestjs
|
||||||
|
|
||||||
# Install OpenSSL and curl for health checks
|
# Install OpenSSL and curl for health checks
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
|
@ -41,16 +43,23 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
curl \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# Create app directory with correct ownership
|
||||||
|
RUN mkdir -p /app && chown nestjs:nodejs /app
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Switch to non-root user before installing dependencies
|
||||||
|
USER nestjs
|
||||||
|
|
||||||
# Install production dependencies only
|
# Install production dependencies only
|
||||||
COPY package*.json ./
|
COPY --chown=nestjs:nodejs package*.json ./
|
||||||
RUN npm install --omit=dev
|
RUN npm install --omit=dev
|
||||||
|
|
||||||
# Copy Prisma schema and migrations, then generate client (dummy DATABASE_URL for build time only)
|
# Copy Prisma schema and migrations, then generate client (dummy DATABASE_URL for build time only)
|
||||||
COPY prisma ./prisma/
|
COPY --chown=nestjs:nodejs prisma ./prisma/
|
||||||
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
RUN DATABASE_URL="postgresql://user:pass@localhost:5432/db" npx prisma generate
|
||||||
|
|
||||||
# Copy built files
|
# Copy built files
|
||||||
COPY --from=builder /app/dist ./dist
|
COPY --chown=nestjs:nodejs --from=builder /app/dist ./dist
|
||||||
|
|
||||||
# Create startup script that runs migrations before starting the app
|
# Create startup script that runs migrations before starting the app
|
||||||
RUN echo '#!/bin/sh\n\
|
RUN echo '#!/bin/sh\n\
|
||||||
|
|
@ -60,15 +69,7 @@ npx prisma migrate deploy || npx prisma db push --accept-data-loss\n\
|
||||||
echo "Starting application..."\n\
|
echo "Starting application..."\n\
|
||||||
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
exec node dist/main.js\n' > /app/start.sh && chmod +x /app/start.sh
|
||||||
|
|
||||||
# Create non-root user
|
ENV NODE_ENV=production
|
||||||
RUN groupadd -g 1001 nodejs && \
|
|
||||||
useradd -u 1001 -g nodejs nestjs
|
|
||||||
|
|
||||||
# Change ownership of app directory
|
|
||||||
RUN chown -R nestjs:nodejs /app
|
|
||||||
|
|
||||||
# Switch to non-root user
|
|
||||||
USER nestjs
|
|
||||||
|
|
||||||
# Expose port
|
# Expose port
|
||||||
EXPOSE 3001
|
EXPOSE 3001
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue