From a26c887f826ca0643fc7b03bc7fe582971338570 Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Mon, 19 Sep 2022 10:43:07 +0200 Subject: [PATCH] fix(ci): display correct initial page on storybook load Use http-server instead of serve to serve the storybook fix #483 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ad1bf8755..109e52a14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,6 @@ WORKDIR /workspace COPY --from=builder /usr/src/app/storybook-static . -RUN npm add -g serve +RUN npm add -g local-web-server -CMD serve -l 80 +CMD ws --compress --hostname localhost -v -p 80