Browse Source

fix docker script

pull/2/head
Muhammad Sulaiman Yusuf 2 years ago
parent
commit
e35a09e86d
  1. 6
      Dockerfile

6
Dockerfile

@ -1,10 +1,12 @@
FROM node:14.20-alpine3.15
FROM node:14.20.1-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm i -g npm@9.1.1
RUN npm install --legacy-peer-deps
COPY . .

Loading…
Cancel
Save