Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

chore(deps): update node.js to v19 #23

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ publish_prod:
- main
tags:
- docker
image: node:12
image: node:19
variables:
# Variables needs to be INPUT_variable_name_uppercase
# see https://github.com/actions/toolkit/blob/c9819f79d2a27c1f26ef7ea85ff44346e7d60741/packages/core/src/core.ts#L69
Expand All @@ -77,7 +77,7 @@ publish_prod_no_history:
- main
tags:
- docker
image: node:12
image: node:19
variables:
INPUT_TARGET_BRANCH: prod_no_history
INPUT_COMMIT_MESSAGE: Publish to prod
Expand Down
4 changes: 2 additions & 2 deletions websites/03-spa-restapi-mongo/searchapi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14 AS stage1
FROM node:19 AS stage1

WORKDIR /usr/src/app

Expand All @@ -12,7 +12,7 @@ CMD [ "node", "index.js" ]


# prod stage
FROM node:16.9.1-slim
FROM node:19.1.0-slim

WORKDIR /work/
RUN chown 1001 /work \
Expand Down