15 lines
413 B
Plaintext
15 lines
413 B
Plaintext
FROM node:16 AS compile-image
|
|
|
|
WORKDIR /opt/ng
|
|
COPY package.json /opt/ng/package.json
|
|
RUN npm install
|
|
RUN npm install -g @angular/cli
|
|
ENV PATH="./node_modules/.bin:$PATH"
|
|
|
|
COPY . ./
|
|
RUN ng build --configuration production --base-href /cathaypay-web/ --deploy-url /cathaypay-web/
|
|
|
|
FROM nginx
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=compile-image /opt/ng/dist/cathaypay-web /usr/share/nginx/html
|