diff --git a/Dockerfile b/Dockerfile index dc5958d..c6a162c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # - Zusier (https://github.com/Zusier) # Node 14 image -FROM node:14.17.3 +FROM node:14.17.5 # Set working directory WORKDIR /opt/ass/ @@ -14,7 +14,7 @@ COPY . ./ # Update npm to at least v7.x.x, # then install dependencies -RUN npm i -g npm@>=7 typescript && \ +RUN npm i -g npm@7 typescript && \ npm i --save-dev && \ npm run build