added Dockerfile

هذا الالتزام موجود في:
2025-10-29 14:53:10 +03:00
الأصل b5e9c3bcc9
التزام cee37771de
3 ملفات معدلة مع 97 إضافات و0 حذوفات

31
Dockerfile Normal file
عرض الملف

@@ -0,0 +1,31 @@
# Stage 1: Build the React application
FROM node:18-alpine AS builder
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy all files
COPY . .
# Build the application
RUN npm run build
# Stage 2: Serve with Nginx
FROM nginx:alpine
# Copy the built React app to Nginx's html directory
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy custom Nginx configuration
COPY nginx.conf /etc/nginx/nginx.conf
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]