Initial empty commit for admin frontend

This commit is contained in:
2026-05-18 22:13:05 +03:00
parent fde574c7a0
commit 36c95b71a4
52 changed files with 3 additions and 5812 deletions
-12
View File
@@ -1,12 +0,0 @@
FROM node:20-alpine as build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]