added github action

هذا الالتزام موجود في:
2026-05-06 15:06:39 +03:00
الأصل 7b2f8840cb
التزام 1d90a99003
5 ملفات معدلة مع 67 إضافات و1 حذوفات

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

@@ -0,0 +1,29 @@
# Build stage
FROM node:18-alpine AS build
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Build the app
RUN npm run build
# Production stage
FROM nginx:alpine
# Copy built app from build stage
COPY --from=build /app/build /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start nginx
CMD ["nginx", "-g", "daemon off;"]