@@ -0,0 +1,17 @@
|
||||
node_modules
|
||||
dist
|
||||
coverage
|
||||
.git
|
||||
.github
|
||||
.env
|
||||
.env.*
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.vscode
|
||||
.idea
|
||||
.DS_Store
|
||||
*.md
|
||||
Dockerfile*
|
||||
docker-compose*
|
||||
+32
-23
@@ -1,24 +1,33 @@
|
||||
FROM node:20-alpine AS builder
|
||||
# -------- Build Stage --------
|
||||
FROM node:20-alpine AS builder
|
||||
|
||||
# Install tzdata to support timezone settings
|
||||
RUN apk add --no-cache tzdata
|
||||
|
||||
# Set the timezone to Asia/Tehran
|
||||
RUN cp /usr/share/zoneinfo/Asia/Tehran /etc/localtime && echo "Asia/Tehran" > /etc/timezone
|
||||
|
||||
WORKDIR /build
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . ./
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:stable-alpine AS production-stage
|
||||
|
||||
COPY --from=builder /build/dist /usr/share/nginx/html
|
||||
|
||||
COPY --from=builder /build/nginx.con[f] /etc/nginx/conf.d/default.conf
|
||||
RUN cat /etc/nginx/conf.d/default.conf
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
WORKDIR /app
|
||||
|
||||
# Copy only dependency files first (better cache)
|
||||
COPY package*.json ./
|
||||
|
||||
# Use clean install for reproducible builds
|
||||
RUN npm ci
|
||||
|
||||
# Copy source after deps (maximizes cache usage)
|
||||
COPY . .
|
||||
|
||||
# Build with production mode
|
||||
RUN npm run build
|
||||
|
||||
|
||||
# -------- Production Stage --------
|
||||
FROM nginx:stable-alpine AS production
|
||||
|
||||
# Copy built assets
|
||||
COPY --from=builder /app/dist /usr/share/nginx/html
|
||||
|
||||
# Copy nginx config (optional, safer naming)
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
# Remove default nginx config if needed (optional safety)
|
||||
RUN rm -f /etc/nginx/conf.d/default.conf.default || true
|
||||
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user