mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-12-19 01:47:11 +08:00
42 lines
918 B
Docker
42 lines
918 B
Docker
# syntax=docker/dockerfile:1
|
|
# Build stage
|
|
FROM node:20.12.0-alpine AS builder
|
|
|
|
# Set production environment
|
|
ENV NODE_ENV=production
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files first for better layer caching
|
|
COPY package.json pnpm-lock.yaml ./
|
|
|
|
# Enable corepack and install dependencies
|
|
RUN corepack enable && \
|
|
pnpm install --frozen-lockfile
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build the application
|
|
RUN pnpm run build
|
|
|
|
# Production stage
|
|
FROM nginx:1.25-alpine
|
|
|
|
# Install runtime dependencies
|
|
RUN apk add --no-cache tini
|
|
|
|
# Copy built application
|
|
COPY --from=builder /app/dist /usr/share/nginx/html/
|
|
|
|
# Copy configuration files
|
|
COPY --from=builder /app/docker/nginx.conf /etc/nginx/nginx.conf
|
|
COPY --from=builder /app/docker/entrypoint.sh /docker-entrypoint.sh
|
|
|
|
# Make entrypoint executable
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
|
|
# Use tini to handle signals properly
|
|
ENTRYPOINT ["/sbin/tini", "--", "/docker-entrypoint.sh"]
|