Full authentication in front

This commit is contained in:
2025-04-07 02:33:27 +02:00
parent cd248c4aa9
commit 738a9bebf0
52 changed files with 7399 additions and 2199 deletions

View File

@@ -1,13 +1,13 @@
FROM node:lts-alpine
WORKDIR /app
RUN npm install -g @angular/cli http-server
RUN npm install -g http-server
COPY rpk-gui/package*.json ./
RUN npm install
COPY rpk-gui/ .
RUN npm run build
EXPOSE 4200
EXPOSE 5173
CMD [ "npm", "run", "ng", "serve", "--", "--host", "0.0.0.0", "--disable-host-check" ]
CMD [ "npm", "run", "dev", "--", "--host"]