Skip to content

Commit

Permalink
upgrade to node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-ey committed Jul 31, 2024
1 parent 85da603 commit aeb59f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bcat-build-and-deploy-dev-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Build BCAT app
run: |
oc version
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Deploy to dev
run: |
oc version
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Deploy to test
run: |
oc version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bcat-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Build BCAT app
run: |
oc version
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
- name: Deploy to prod
run: |
oc version
Expand Down
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Server
FROM registry.access.redhat.com/ubi9/nodejs-16:1
FROM registry.access.redhat.com/ubi9/nodejs-18
# Static env vars
ARG VERSION
ENV VERSION $VERSION
Expand Down
4 changes: 2 additions & 2 deletions client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/nodejs-16:1 AS builder
FROM registry.access.redhat.com/ubi9/nodejs-18 AS builder
# Static env vars
ARG VERSION
ENV VERSION $VERSION
Expand All @@ -16,7 +16,7 @@ COPY . .
RUN npm run build


FROM registry.access.redhat.com/ubi9/nodejs-16:1 AS runner
FROM registry.access.redhat.com/ubi9/nodejs-18 AS runner
# Static env vars
ARG VERSION
ENV VERSION $VERSION
Expand Down

0 comments on commit aeb59f4

Please sign in to comment.