re-added normal build steps

This commit is contained in:
Timo 2021-05-04 16:13:51 +03:00
parent 1e79f28643
commit 7b8e855dc4

View File

@ -6,7 +6,7 @@ RUN apk add --update jq && rm -rf /var/cache/apk/*
COPY package.json yarn.lock ./
## Storing node modules on a separate layer will prevent unnecessary npm installs at each build
#//TODO RUN yarn install && mkdir /ng-app && mv ./node_modules ./ng-app
RUN yarn install && mkdir /ng-app && mv ./node_modules ./ng-app
WORKDIR /ng-app
@ -23,8 +23,8 @@ COPY tsconfig.base.json tsconfig.base.json
COPY versions.sh version.sh
## Build the angular app in production mode and store the artifacts in dist folder
#//TODO RUN yarn lint
#//TODO RUN yarn build --prod --project=red-ui --base-href /ui/
RUN yarn lint
RUN yarn build --prod --project=red-ui --base-href /ui/
### STAGE 2: Setup ###
@ -37,7 +37,7 @@ COPY docker/common/nginx/nginx.conf /etc/nginx/conf.d/default.conf
RUN rm -rf /usr/share/nginx/html/*
## From builder stage copy over the artifacts in dist folder to default nginx public folder
#//TODO COPY --from=builder /ng-app/dist/apps/red-ui /usr/share/nginx/html/ui
COPY --from=builder /ng-app/dist/apps/red-ui /usr/share/nginx/html/ui
RUN chmod o+r -R /usr/share/nginx/html
RUN chmod g+r -R /usr/share/nginx/html