Skip to content

Commit

Permalink
chore: bump node to v20.11.0 (#9410)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <matt.krick@gmail.com>
  • Loading branch information
mattkrick committed Feb 12, 2024
1 parent 84d183f commit 51f28a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# First, install all dependencies, including devDependencies, to run the build process
FROM node:20.9.0 as build
FROM node:20.11.0 as build

WORKDIR /parabol

Expand All @@ -17,7 +17,7 @@ COPY . .
RUN yarn build

# Now, start over with a new stage so we don't pull over devDependencies
FROM node:20.9.0 as prod
FROM node:20.11.0 as prod

WORKDIR /parabol

Expand Down
6 changes: 3 additions & 3 deletions docker/parabol-ubi/docker-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Recommended:

| Name | Description | Possible values | Recommended value |
| -------------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ------------------------------------------------------------------- |
| `postgresql_tag` | PostgreSQL version from the [Docker image](https://hub.docker.com/_/postgres) | `Any tag` | `15.4` |
| `postgresql_tag` | PostgreSQL version from the [Docker image](https://hub.docker.com/_/postgres) | `Any tag` | `15.4` |
| `rethinkdb_tag` | RethinkDB version from the [Docker image](https://hub.docker.com/_/rethinkdb) | `Any tag` | `2.4.2` |
| `redis_tag` | Redis version from the [Docker image](https://hub.docker.com/_/redis) | `Any tag` | `7.0-alpine` |
| `redis_tag` | Redis version from the [Docker image](https://hub.docker.com/_/redis) | `Any tag` | `7.0-alpine` |
| `_BUILD_ENV_PATH` | File `.env` used by the application during the build process | `Relative path from the root level of the repository` | `docker/parabol-ubi/docker-build/environments/pipeline` |
| `_NODE_VERSION` | Node version, used by Docker to use the Docker image node:\_NODE_VERSION as base image to build | `Same as in root package.json` | |
| `_DOCKERFILE` | Dockerfile used to build the image | `Relative path from the root level of the repository` | `./docker/parabol-ubi/docker-build/dockerfiles/pipeline.dockerfile` |
Expand Down Expand Up @@ -135,7 +135,7 @@ export postgresql_tag=15.4-alpine; \
export rethinkdb_tag=2.4.2; \
export redis_tag=7.0-alpine; \
export _BUILD_ENV_PATH=environments/local-buildenv \
export _NODE_VERSION=20.9.0 \
export _NODE_VERSION=20.11.0 \
export _DOCKER_REPOSITORY=parabol \
export _PARABOL_GIT_REF=vX.X.X \
export _DOCKER_TAG=vX.X.X
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"url": "https://github.com/ParabolInc/parabol/issues"
},
"engines": {
"node": "^20.9.0",
"node": "^20.11.0",
"yarn": "^1.22.5"
},
"private": true,
Expand Down

0 comments on commit 51f28a1

Please sign in to comment.