Try to fix Docker breaking most likely because of NPM 8 being released

pull/97/head
tycrek 3 years ago
parent 202e990888
commit afb9dd7c94
No known key found for this signature in database
GPG Key ID: 25D74F3943625263

@ -4,7 +4,7 @@
# - Zusier <zusier@pm.me> (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

Loading…
Cancel
Save