This commit is contained in:
Hamza-Ayed
2026-03-20 02:14:50 +03:00
parent 65ce6a0ba2
commit 6e6ee55d03
47 changed files with 14706 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Use official Node.js image
FROM node:20-alpine
WORKDIR /app
# Install dependencies placeholder
# سيتم تثبيت الاعتمادات لاحقاً
COPY apps/api/package*.json ./
RUN npm install
COPY apps/api/ .
RUN npm run build
EXPOSE 3200
CMD ["npm", "run", "start:prod"]