🐛 Fix some paths and add missed nginx config file for the storybook docker image

This commit is contained in:
David Barragán Merino
2025-10-29 11:11:32 +01:00
parent 6076df5c80
commit 1b81ddebb4
3 changed files with 30 additions and 3 deletions

View File

@@ -310,11 +310,11 @@ function build-exporter-docker-image {
}
function build-storybook-docker-image {
rsync -avr --delete ./bundles/frontend/ ./docker/images/bundle-frontend/;
rsync -avr --delete ./bundles/storybook/ ./docker/images/bundle-storybook/;
pushd ./docker/images;
docker build \
-t penpotapp/storybook:$CURRENT_BRANCH -t penpotapp/storybook:latest \
--build-arg BUNDLE_PATH="./bundle-frontend/storybook-static/" \
--build-arg BUNDLE_PATH="./bundle-storybook/" \
-f Dockerfile.storybook .;
popd;
}