OpenSlides/client/docker/Dockerfile.dev
Sean 98e4f05b90 Update dockerfiles for node 16 and a12
adjust the productive dockerfiles to work with angular12 and use node16
2021-07-16 11:21:29 +02:00

12 lines
113 B
Docker

FROM node:16
WORKDIR /app
COPY package.json .
RUN npm install
RUN npm run postinstall
COPY . .
CMD npm start