Fixed issue (hopefully) where nodemon is not properly installed on Docker

This commit is contained in:
Isaac Abadi
2021-03-18 20:59:46 -06:00
parent 4c1f975eae
commit aefdde5401
2 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ FROM alpine:3.12 as frontend
RUN apk add --no-cache \
npm
RUN npm install -g @angular/cli nodemon
RUN npm install -g @angular/cli
WORKDIR /build
COPY [ "package.json", "package-lock.json", "/build/" ]