bardd commited on
Commit
19a7ce5
·
verified ·
1 Parent(s): 14f69c6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -6,8 +6,12 @@ WORKDIR /app
6
  # Install app dependencies
7
  COPY package*.json ./
8
 
 
9
  RUN npm install
10
 
 
 
 
11
  # Bundle app source
12
  COPY . .
13
 
 
6
  # Install app dependencies
7
  COPY package*.json ./
8
 
9
+ # Install dependencies
10
  RUN npm install
11
 
12
+ # Install additional dependencies
13
+ RUN npm install mongoose bcrypt jsonwebtoken @nestjs/passport @nestjs/jwt passport-jwt passport-custom jwt-decode passport-local uuid i18n-ts
14
+
15
  # Bundle app source
16
  COPY . .
17