mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-03-09 18:28:14 +08:00
22 lines
341 B
Docker
22 lines
341 B
Docker
FROM node:latest AS build
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ui/ .
|
|
|
|
RUN npm install -g @angular/cli
|
|
RUN npm install --legacy-peer-deps
|
|
|
|
ARG CONFIG
|
|
|
|
RUN ng build
|
|
|
|
FROM nginx:latest
|
|
|
|
COPY --from=build /app/dist/tig-brenchmarker-ui/browser /usr/share/nginx/html
|
|
COPY ui/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|