init
All checks were successful
Deployment / Deploy Storybook (push) Successful in 5m57s

This commit is contained in:
Benjamin Palko 2025-04-01 13:49:37 -04:00
commit b2598e0b23
76 changed files with 3578 additions and 0 deletions

11
Dockerfile.storybook Normal file
View file

@ -0,0 +1,11 @@
FROM oven/bun:1.2-alpine AS build
WORKDIR /opt/build
COPY . .
RUN bun install --frozen-lockfile \
&& bun run build-storybook
FROM nginx:alpine3.21
COPY --from=build --chown=1000:1000 /opt/build/storybook-static /usr/share/nginx/html