98e4f05b90
adjust the productive dockerfiles to work with angular12 and use node16
12 lines
113 B
Docker
12 lines
113 B
Docker
FROM node:16
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json .
|
|
RUN npm install
|
|
RUN npm run postinstall
|
|
|
|
COPY . .
|
|
|
|
CMD npm start
|