rename to theia
Some checks failed
Deployment / Deploy (push) Has been cancelled

This commit is contained in:
Benjamin Palko 2025-03-30 23:10:13 -04:00
parent 56cc37de7e
commit e57a4ed613
71 changed files with 1287 additions and 37 deletions

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