Sarting auth implementation in front

This commit is contained in:
2025-04-04 15:40:25 +02:00
parent b89bb484b7
commit d5e443a7c4
10 changed files with 102 additions and 40 deletions

13
gui/Dockerfile Normal file
View File

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