2021-05-12 00:55:39 +02:00

13 lines
191 B
Docker

# Stage 1
FROM node:alpine
WORKDIR /app
COPY . .
RUN ls -l; ls -l ./node_modules
RUN npm install && npm install chokidar --save
ENTRYPOINT npm run -- ng serve --host 0.0.0.0 --port 4200