first commit

This commit is contained in:
arfat qureshi
2025-10-29 11:44:13 +05:30
parent 1fcff40400
commit 6ce776f218
463 changed files with 95252 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:20.11.1 as builder
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install && npm run build-dev
FROM nginx:1.14.2-alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=builder /usr/src/app/dist/ExtraNet /usr/share/nginx/html
EXPOSE 80
EXPOSE 443
CMD ["nginx", "-g", "daemon off;"]