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

14 lines
274 B
Docker

# Use official Node.js image
FROM node:20-alpine
WORKDIR /app
# Install dependencies placeholder
# سيتم تثبيت الاعتمادات لاحقاً
COPY apps/web/package*.json ./
RUN npm install
COPY apps/web/ .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host"]