Sarting auth implementation in front
This commit is contained in:
13
gui/Dockerfile
Normal file
13
gui/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user