mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 03:29:16 +01:00
feat: ♻️ Change code to build in static mode, add timelines, profiles and notes, new design
This commit is contained in:
parent
9edfd5ac2d
commit
acd50ece9b
75 changed files with 1603 additions and 549 deletions
|
|
@ -1,5 +1,4 @@
|
|||
FROM oven/bun:1.1.3 AS base
|
||||
# Temporarily switch back to the non-alpine version of Bun because of Bun's issues with musl
|
||||
FROM oven/bun:1.1.4-alpine AS base
|
||||
|
||||
# Install dependencies into temp directory
|
||||
# This will cache them and speed up future builds
|
||||
|
|
@ -18,6 +17,8 @@ FROM base as final
|
|||
|
||||
COPY --from=builder /app/.output/ /app
|
||||
|
||||
RUN bun add --global serve
|
||||
|
||||
LABEL org.opencontainers.image.authors "Gaspard Wierzbinski (https://cpluspatch.com)"
|
||||
LABEL org.opencontainers.image.source "https://github.com/lysand-org/lysand-fe"
|
||||
LABEL org.opencontainers.image.vendor "Lysand Org"
|
||||
|
|
@ -26,4 +27,4 @@ LABEL org.opencontainers.image.title "Lysand-FE"
|
|||
LABEL org.opencontainers.image.description "Frontend for the Lysand Project"
|
||||
|
||||
WORKDIR /app/server
|
||||
CMD ["bun", "index.mjs"]
|
||||
CMD ["bunx", "serve", "public"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue