1
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# 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"]
|
||||
Reference in New Issue
Block a user