الملفات
RestaurantDash/Dockerfile
RaghadAlkhous 1ccca905f3 initial commit
2026-05-06 15:08:57 +03:00

19 أسطر
256 B
Docker

FROM node:20 AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:alpine
RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]