15 lines
275 B
Docker
15 lines
275 B
Docker
FROM node:14-alpine
|
|
|
|
WORKDIR /angular
|
|
|
|
COPY package.json /angular
|
|
COPY package-lock.json /angular
|
|
|
|
ENV NODE_OPTIONS="--max_old_space_size=400"
|
|
|
|
RUN npm install --verbose
|
|
|
|
COPY . /angular
|
|
|
|
ENTRYPOINT ["/angular/node_modules/@angular/cli/bin/ng", "serve", "--host", "0.0.0.0"]
|