security-c4po/security-c4po-angular/Dockerfile

22 lines
418 B
Docker

# base image
FROM node:14.15.3
# set working directory
WORKDIR /app
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install and cache app dependencies
COPY package.json /app/package.json
RUN npm install
RUN npm install -g @angular/cli@12.2.17
# add app
COPY . /app
# start app
CMD ng serve -c compose --host 0.0.0.0
# -------------------------------------------------------------