DONE: first init

This commit is contained in:
ISMAIL MASSERAN
2026-07-20 16:10:22 +08:00
commit 3189e3a1e3
272 changed files with 48853 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM node:21-alpine AS build
WORKDIR /admin-app
COPY package*.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 5001
CMD ["npm", "run", "preview"]