Skip to content

Commit 565a21b

Browse files
authored
chore(frontend): Increase node version to 22.19.0 (#12257)
* chore(frontend): Increase node version to 22.19.0 Increase node version to match latest available in the github action. Signed-off-by: Owen Maschal <[email protected]> * Update to 22.19 in dockerfile and contributing Signed-off-by: Owen Maschal <[email protected]> --------- Signed-off-by: Owen Maschal <[email protected]>
1 parent 92216e7 commit 565a21b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

frontend/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.14.0
1+
v22.19.0

frontend/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ are available at their corresponding GitHub repositories.
1111
### fnm
1212

1313
```bash
14-
fnm install 22.14.0
15-
fnm use 22.14.0
14+
fnm install 22.19.0
15+
fnm use 22.19.0
1616
```
1717

1818
### nvm
1919

2020
```bash
21-
nvm install 22.14.0
22-
nvm use 22.14.0
21+
nvm install 22.19.0
22+
nvm use 22.19.0
2323
```
2424

2525
## Manage dev environment with npm

frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG BASE_IMAGE=alpine
2-
FROM node:22.13 as build
2+
FROM node:22.19 as build
33

44
ARG COMMIT_HASH
55
ENV COMMIT_HASH=${COMMIT_HASH}
@@ -22,7 +22,7 @@ RUN mkdir -p ./server/dist && \
2222
echo ${DATE} > ./server/dist/BUILD_DATE && \
2323
echo ${TAG_NAME} > ./server/dist/TAG_NAME
2424

25-
FROM node:22.13-${BASE_IMAGE}
25+
FROM node:22.19-${BASE_IMAGE}
2626

2727
COPY --from=build ./src/frontend/server /server
2828
COPY --from=build ./src/frontend/build /client

0 commit comments

Comments
 (0)