Files
MaxKey/maxkey-web-frontend/maxkey-web-mgt-app/Dockerfile

29 lines
510 B
Docker
Raw Normal View History

2022-05-06 08:50:50 +08:00
#MaxKey Mgt Frontend Docker Build
2022-05-05 17:13:16 +08:00
FROM node:16.14.2
LABEL authors="MaxKey <maxkeysupport@163.com>"
WORKDIR /usr/src/app
COPY package.json package.json
RUN npm config set registry https://registry.npm.taobao.org \
&& npm i
COPY ./src ./src
RUN npm install -g @angular/cli
2022-05-06 08:50:50 +08:00
RUN ng build --prod --base-href /maxkey-mgt/
2022-05-05 17:13:16 +08:00
FROM nginx
2022-05-06 08:50:50 +08:00
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
2022-05-05 17:13:16 +08:00
2022-05-06 08:50:50 +08:00
#RUN rm -rf /usr/share/nginx/html/*
2022-05-05 17:13:16 +08:00
2022-05-06 08:50:50 +08:00
COPY dist /usr/share/nginx/html/maxkey-mgt
2022-05-05 17:13:16 +08:00
#CMD ["nginx", "-g", "daemon off;"]