Files
maps-saas/infrastructure/docker/api/Dockerfile
T
2026-03-20 02:14:50 +03:00

15 lines
283 B
Docker

# 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"]