44 lines
971 B
Text
44 lines
971 B
Text
|
FROM node:14.15.5-alpine3.13 AS identity
|
||
|
|
||
|
WORKDIR /identity
|
||
|
|
||
|
RUN apk add git
|
||
|
|
||
|
COPY ./package.json .
|
||
|
COPY ./package-lock.json .
|
||
|
COPY ./.npmrc .
|
||
|
|
||
|
# use yarn to upgrade npm
|
||
|
RUN yarn global add npm@7
|
||
|
|
||
|
# install frontend dependencies before copying the frontend code
|
||
|
# into the container so we get docker cache benefits
|
||
|
RUN npm install
|
||
|
|
||
|
# don't allow any dependencies with vulnerabilities
|
||
|
#RUN npx audit-ci --low
|
||
|
|
||
|
# running ngcc before build_prod lets us utilize the docker
|
||
|
# cache and significantly speeds up builds without requiring us
|
||
|
# to import/export the node_modules folder from the container
|
||
|
RUN npm run ngcc
|
||
|
|
||
|
COPY ./angular.json .
|
||
|
COPY ./tsconfig.json .
|
||
|
COPY ./tsconfig.app.json .
|
||
|
COPY ./webpack.config.js .
|
||
|
COPY ./tslint.json .
|
||
|
COPY ./src ./src
|
||
|
|
||
|
RUN npm run build_prod
|
||
|
|
||
|
# build minified version of frontend, served using caddy
|
||
|
FROM caddy:2.3.0-alpine
|
||
|
|
||
|
WORKDIR /identity
|
||
|
|
||
|
COPY ./Caddyfile .
|
||
|
COPY --from=identity /identity/dist/identity .
|
||
|
|
||
|
ENTRYPOINT ["caddy", "run"]
|