deafgain-website/Dockerfile
2024-12-09 18:39:02 -06:00

34 lines
921 B
Docker

FROM node:20-alpine AS base
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml* ./
# Install dependencies
FROM base AS deps
RUN pnpm install --frozen-lockfile
# Build the app
FROM base AS builder
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN pnpm build
# Production image
FROM nginx:alpine AS runner
# Copy built app
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy static assets from the builder stage
COPY --from=builder /app/public/images /usr/share/nginx/html/images
COPY --from=builder /app/public/subtitles /usr/share/nginx/html/subtitles
COPY --from=builder /app/public/transcriptions /usr/share/nginx/html/transcriptions
COPY nginx.conf /etc/nginx/conf.d/default.conf
# Create videos directory for volume mount
RUN mkdir -p /usr/share/nginx/html/videos
EXPOSE 804
CMD ["nginx", "-g", "daemon off;"]