Files
aranroig.com/frontend/Dockerfile
BinarySandia04 39829678a0
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 32s
Test commit blog
2026-06-10 00:37:27 +02:00

38 lines
691 B
Docker

# ---------- Build Stage ----------
FROM node:20-alpine AS builder
WORKDIR /app
RUN apk add --no-cache python3 make g++ git
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
ARG CACHEBUST=1
# Copy project files
RUN git clone http://git.aranroig.com/Syndria98/blogs /tmp/blogs
RUN mkdir -p content && cp -r /tmp/blogs/content/. ./content/ && rm -r /tmp/blogs
COPY . .
# Build the Nuxt app
RUN npm run build
# ---------- Production Stage ----------
FROM node:20-alpine
WORKDIR /app
# Copy built output
COPY --from=builder /app/.output ./.output
# Expose Nuxt port
EXPOSE 3000
# Start Nuxt production server
CMD ["node", ".output/server/index.mjs"]