Skip to content

Commit deaa176

Browse files
committed
Client: changes storybook node version for Dockerfile.storybook
1 parent ecbbaf6 commit deaa176

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/auto-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "auto-testing"
77

88
jobs:
9-
build-and-push-admin:
9+
build-and-push-admin-auto-test:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
@@ -43,9 +43,9 @@ jobs:
4343
tags: docker.io/${{ secrets.DOCKERHUB_ADMIN_USERNAME }}/seb-server-gui-auto-testing:${{ env.TAG_NAME }}
4444
build-args: VITE_SUB_PATH=${{ matrix.path_name }}
4545

46-
build-and-push-storybook:
46+
build-and-push-auto-test-storybook:
4747
runs-on: ubuntu-latest
48-
needs: build-and-push-admin
48+
needs: build-and-push-admin-auto-test
4949

5050
steps:
5151
- name: Set env for dynamic tag

Dockerfile.storybook

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build Storybook
2-
FROM node:22.2.0 AS storybook-builder
2+
FROM node:20.19.0 AS storybook-builder
33
WORKDIR /app/client
44

55
# Install dependencies
@@ -13,7 +13,7 @@ COPY client/ .
1313
RUN npm run build-storybook
1414

1515
# Final image - serve Storybook statically
16-
FROM node:22.2.0-alpine
16+
FROM node:20.19.0-alpine
1717
WORKDIR /app
1818

1919
# Use a tiny static file server

0 commit comments

Comments
 (0)