63 lines
1.5 KiB
Docker
63 lines
1.5 KiB
Docker
# Stage 1: Build
|
|
FROM node:20-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
COPY tsconfig*.json ./
|
|
COPY vite.config.ts ./
|
|
|
|
# Install all dependencies (including devDependencies for build)
|
|
RUN npm ci
|
|
|
|
# Copy source code
|
|
COPY src ./src
|
|
COPY public ./public
|
|
COPY index.html ./
|
|
|
|
# Build application
|
|
RUN npm run build
|
|
|
|
# Verify build output
|
|
RUN ls -la dist/ && echo "Build completed successfully"
|
|
|
|
# Stage 2: Runtime
|
|
FROM nginx:stable-alpine
|
|
|
|
LABEL maintainer="ITAM Team <devops@itam.local>"
|
|
|
|
# Install curl for health checks
|
|
RUN apk add --no-cache curl
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
# Copy built assets from builder
|
|
COPY --from=builder /app/dist .
|
|
|
|
# Copy static image assets referenced by literal /img/... paths
|
|
COPY img ./img
|
|
|
|
# Copy root-level logo asset referenced directly by index.html
|
|
COPY ["image 92.png", "./image 92.png"]
|
|
|
|
# Copy Nginx static file serving configuration (not reverse proxy)
|
|
COPY docker/frontend/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Create nginx runtime user and directories
|
|
RUN mkdir -p /var/log/nginx && \
|
|
chown -R nginx:nginx /usr/share/nginx/html && \
|
|
chown -R nginx:nginx /var/log/nginx && \
|
|
chown -R nginx:nginx /var/cache/nginx && \
|
|
chown -R nginx:nginx /etc/nginx/conf.d
|
|
|
|
# Expose port
|
|
EXPOSE 80
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=20s --retries=3 \
|
|
CMD curl -f http://localhost:80/ || exit 1
|
|
|
|
# Run nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|