Update slides and cleanup examples

This commit is contained in:
Mike Conrad
2025-06-19 12:05:32 -04:00
parent 3f0d1d77ca
commit 66fc64dcac
6 changed files with 83 additions and 57 deletions

View File

@ -5,12 +5,9 @@ RUN yarn install
COPY . .
FROM base AS build
WORKDIR /app
COPY --from=base /app/* .
RUN yarn build
FROM base AS develop
COPY --from=base /app/ .
EXPOSE 5173
ENTRYPOINT [ "yarn", "dev", "--host", "0.0.0.0" ]