ngx-admin/Dockerfile
Sergio 734a3a8976
Remove update command
Removed `npm update` command.
2023-04-21 22:48:19 +02:00

16 lines
141 B
Docker

FROM node:14
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build --prod
EXPOSE 4200
# Start APP
CMD npm start