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

fix(node): swithcing to node 20.11 #1142

Merged
merged 1 commit into from
Jan 11, 2024
Merged
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ only_dev: &only_dev
jobs:
apollo:
docker:
- image: cimg/node:18.17.1@sha256:901508b2cbea0201ac8dab2656bd2e38f58d58f6ff9b32746fb4cca85d5e7dd6
- image: cimg/node:20.11
steps:
- checkout
- run:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:

build:
docker:
- image: circleci/node:16.13.1@sha256:1803e9ed7deec9456ad2609124b7333d40b2eec0cf34998ae766cbf90c9a3625
- image: cimg/node:20.11
steps:
- checkout
# Define the working directory for this job
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
description: 'Test scripts to run'
type: string
docker:
- image: cimg/node:18.17.1@sha256:901508b2cbea0201ac8dab2656bd2e38f58d58f6ff9b32746fb4cca85d5e7dd6
- image: cimg/node:20.11
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_PASSWORD
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20.11
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18@sha256:c85dc4392f44f5de1d0d72dd20a088a542734445f99bed7aa8ac895c706d370d
FROM node:20.11@sha256:a57b18bad845088dbe53c0362c0be00a8b26098f4d12b805d04812223437f505
WORKDIR /usr/src/app

ARG GIT_SHA
Expand All @@ -11,4 +11,4 @@ ENV GIT_SHA=${GIT_SHA}

EXPOSE ${PORT}

CMD ["npm", "start"]
CMD ["npm", "start"]
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
- HOSTNAME_EXTERNAL=localstack

app:
image: node:18@sha256:e7e0921e352fc579d4d1807ecb2a91f42548cb5097e8bd2742e13bd672b7dc4a
image: node:20.11
platform: linux/amd64
working_dir: /app
ports:
Expand Down
Loading
Loading