diff --git a/.drone.yml b/.drone.yml index 996debb..1878202 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,7 +11,7 @@ globals: from_secret: gitea_password steps: - - name: API # building the API docker image + - name: Build Web App image: plugins/docker settings: dockerfile: Dockerfile diff --git a/Dockerfile b/Dockerfile index 62cc81d..e8bb08f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:12.19.0-buster AS compile-image WORKDIR /opt/ng COPY package.json /opt/ng/package.json -RUN npm install +RUN npm install@lastest RUN npm install -g @angular/cli ENV PATH="./node_modules/.bin:$PATH"