Some checks failed
Test examples / Test Examples (20) (push) Has been cancelled
Test examples / Test Examples (22) (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Trigger Release / start (push) Has been cancelled
Stale issue handler / stale (push) Has been cancelled
Update Font Data / create-pull-request (push) Has been cancelled
build-and-deploy / deploy-target (push) Has been cancelled
build-and-deploy / build (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-musl - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-unknown-linux-gnu - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-pc-windows-msvc - node@16 (push) Has been cancelled
build-and-deploy / stable - aarch64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / stable - x86_64-apple-darwin - node@16 (push) Has been cancelled
build-and-deploy / build-wasm (nodejs) (push) Has been cancelled
build-and-deploy / build-wasm (web) (push) Has been cancelled
build-and-deploy / Deploy preview tarball (push) Has been cancelled
build-and-deploy / Potentially publish release (push) Has been cancelled
build-and-deploy / publish-turbopack-npm-packages (push) Has been cancelled
build-and-deploy / Deploy examples (push) Has been cancelled
build-and-deploy / thank you, build (push) Has been cancelled
build-and-deploy / Upload Turbopack Bytesize metrics to Datadog (push) Has been cancelled
Rspack Next.js development integration tests / Rspack integration tests (push) Has been cancelled
Rspack Next.js production integration tests / Rspack integration tests (push) Has been cancelled
Turbopack Next.js development integration tests / Next.js integration tests (push) Has been cancelled
Turbopack Next.js production integration tests / Next.js integration tests (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack development test manifest (push) Has been cancelled
Update Rspack test manifest / Update and upload Rspack production test manifest (push) Has been cancelled
Upload bundler test manifests to areweturboyet.com / Upload test results (push) Has been cancelled
Update React / create-pull-request (push) Has been cancelled
test-e2e-project-reset-cron / reset-test-project (push) Has been cancelled
Notify about the top 15 issues/PRs/feature requests (most reacted) in the last 90 days / run (push) Has been cancelled
97 lines
3.2 KiB
Docker
97 lines
3.2 KiB
Docker
# ============================================
|
|
# Stage 1: Dependencies Installation Stage
|
|
# ============================================
|
|
|
|
# IMPORTANT: Node.js and Nginxinc Image Version Maintenance
|
|
# This Dockerfile uses Node.js 24.13.0-slim and Nginxinc image with alpine3.22, which was the latest LTS version at the time of writing.
|
|
# To ensure security and compatibility, regularly validate and update the NODE_VERSION ARG and NGINXINC_IMAGE_TAG to the latest LTS versions.
|
|
|
|
ARG NODE_VERSION=24.13.0-slim
|
|
ARG NGINXINC_IMAGE_TAG=alpine3.22
|
|
|
|
FROM node:${NODE_VERSION} AS dependencies
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package-related files first to leverage Docker's caching mechanism
|
|
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc* ./
|
|
|
|
# Install project dependencies with frozen lockfile for reproducible builds
|
|
RUN --mount=type=cache,target=/root/.npm \
|
|
--mount=type=cache,target=/usr/local/share/.cache/yarn \
|
|
--mount=type=cache,target=/root/.local/share/pnpm/store \
|
|
if [ -f package-lock.json ]; then \
|
|
npm ci --no-audit --no-fund; \
|
|
elif [ -f yarn.lock ]; then \
|
|
corepack enable yarn && yarn install --frozen-lockfile --production=false; \
|
|
elif [ -f pnpm-lock.yaml ]; then \
|
|
corepack enable pnpm && pnpm install --frozen-lockfile; \
|
|
else \
|
|
echo "No lockfile found." && exit 1; \
|
|
fi
|
|
|
|
# ============================================
|
|
# Stage 2: Build Next.js Application
|
|
# ============================================
|
|
|
|
FROM node:${NODE_VERSION} AS builder
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Copy project dependencies from dependencies stage
|
|
COPY --from=dependencies /app/node_modules ./node_modules
|
|
|
|
# Copy application source code
|
|
COPY . .
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
# Next.js collects completely anonymous telemetry data about general usage.
|
|
# Learn more here: https://nextjs.org/telemetry
|
|
# Uncomment the following line in case you want to disable telemetry during the build.
|
|
# ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Build Next.js application
|
|
RUN --mount=type=cache,target=/app/.next/cache \
|
|
if [ -f package-lock.json ]; then \
|
|
npm run build; \
|
|
elif [ -f yarn.lock ]; then \
|
|
corepack enable yarn && yarn build; \
|
|
elif [ -f pnpm-lock.yaml ]; then \
|
|
corepack enable pnpm && pnpm build; \
|
|
else \
|
|
echo "No lockfile found." && exit 1; \
|
|
fi
|
|
|
|
# =========================================
|
|
# Stage 3: Serve Static Files with Nginx
|
|
# =========================================
|
|
|
|
FROM nginxinc/nginx-unprivileged:${NGINXINC_IMAGE_TAG} AS runner
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Next.js collects completely anonymous telemetry data about general usage.
|
|
# Learn more here: https://nextjs.org/telemetry
|
|
# Uncomment the following line in case you want to disable telemetry during the run time.
|
|
# ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
# Copy custom Nginx config
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Copy the static build output from the build stage to Nginx's default HTML serving directory
|
|
COPY --from=builder /app/out /usr/share/nginx/html
|
|
|
|
# Non-root user for security best practices
|
|
USER nginx
|
|
|
|
# Expose port 8080 to allow HTTP traffic
|
|
EXPOSE 8080
|
|
|
|
# Start Nginx directly with custom config
|
|
ENTRYPOINT ["nginx", "-c", "/etc/nginx/nginx.conf"]
|
|
CMD ["-g", "daemon off;"]
|