Robots, pnpm, approve builds
Some checks failed
Next.js App CI / docker (push) Failing after 5m2s

This commit is contained in:
2025-09-16 09:26:46 +02:00
parent f8c819f270
commit 11ea785959
3 changed files with 61 additions and 28 deletions

View File

@@ -1,50 +1,63 @@
# Stage 1: Dependency Fetching # Stage 1: Base image with Node.js and pnpm enabled
FROM node:20-alpine AS deps # This stage is used as a foundation for all subsequent stages.
WORKDIR /app FROM node:20-alpine AS base
RUN npm i -g pnpm ENV PNPM_HOME="/pnpm"
COPY package.json pnpm-lock.yaml ./ ENV PATH="$PNPM_HOME:$PATH"
RUN pnpm fetch RUN corepack enable
# Stage 2: Builder # Stage 2: Builder
FROM node:20-alpine AS builder # This stage installs dependencies and builds the Next.js application.
FROM base AS builder
WORKDIR /app WORKDIR /app
RUN npm i -g pnpm
# Install system dependencies # Install system dependencies needed for your scripts/build
RUN apk add --no-cache imagemagick ghostscript RUN apk add --no-cache imagemagick libwebp libwebp-tools ghostscript
# Copy only the necessary files for installing dependencies
# Copy the dependency manifests and then run install.
RUN echo "PNPM store path is:" && pnpm store path
COPY --from=deps /root/.local/share/pnpm/store/v10 /root/.local/share/pnpm/store/v10
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile --offline
# Copy the rest # Install ALL dependencies (including devDependencies needed for `next build`)
# This leverages the Docker cache effectively.
RUN pnpm install --frozen-lockfile
# Copy the rest of your application source code
COPY . . COPY . .
# --- Asset Generation Step --- # --- Asset Generation & Build ---
RUN chmod +x ./scripts/*.sh && ./scripts/first_page_image.sh RUN chmod +x ./scripts/*.sh && ./scripts/first_page_image.sh
# Run the build.
RUN pnpm build RUN pnpm build
# Stage 3: Runner # Stage 3: Runner (Production)
FROM node:20-alpine AS runner # This is the final, lean image that runs the application.
FROM base AS runner
WORKDIR /app WORKDIR /app
# Create a non-root user for better security # Set NODE_ENV to production
ENV NODE_ENV=production
# Create a non-root user for security
RUN addgroup --system --gid 1001 nodejs RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs RUN adduser --system --uid 1001 nextjs
USER nextjs
# Copy only the necessary production artifacts from the builder stage # Copy only the files needed for production from the builder stage
COPY --from=builder /app/package.json /app/pnpm-lock.yaml ./
# Install ONLY production dependencies.
# The pnpm CLI is already available from the 'base' stage.
RUN pnpm install --prod
# Copy the built Next.js application and public assets
COPY --from=builder /app/public ./public COPY --from=builder /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder /app/.next ./.next
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
# Change ownership to the non-root user
RUN chown -R nextjs:nodejs /app
# Switch to the non-root user
USER nextjs
EXPOSE 3000 EXPOSE 3000
ENV PORT=3000 ENV PORT=3000
# The standalone output creates a server.js file that is the entrypoint # The command to start the Next.js server
CMD ["node", "server.js"] CMD ["pnpm", "start"]

12
app/robots.ts Normal file
View File

@@ -0,0 +1,12 @@
import { MetadataRoute } from 'next'
export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: '*',
allow: '/',
disallow: '/*.pdf$',
},
sitemap: 'https://steffenillium.de/sitemap.xml',
}
}

View File

@@ -52,5 +52,13 @@
"tailwindcss": "^4.1.13", "tailwindcss": "^4.1.13",
"tw-animate-css": "^1.3.8", "tw-animate-css": "^1.3.8",
"typescript": "^5.9.2" "typescript": "^5.9.2"
},
"pnpm": {
"trustedDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver"
]
} }
} }