bardd commited on
Commit
f686c53
·
verified ·
1 Parent(s): 24c59d1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -3,6 +3,8 @@ FROM node:20-alpine
3
  # Create app directory
4
  WORKDIR /app
5
 
 
 
6
  # Install app dependencies
7
  COPY package*.json ./
8
  RUN npm install
 
3
  # Create app directory
4
  WORKDIR /app
5
 
6
+ RUN sudo npm install -g --unsafe-perm=true --allow-root
7
+
8
  # Install app dependencies
9
  COPY package*.json ./
10
  RUN npm install