Update Dockerfile
Browse files- 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 |
|