Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ ENV NODE_ENV=production
RUN bun panda codegen
RUN bun run build

FROM oven/bun:1-alpine AS release
COPY --from=prerelease /usr/src/app/dist/ .

USER bun
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "index.html" ]
FROM httpd:2.4 AS runtime
COPY --from=prerelease /usr/src/app/dist/ /usr/local/apache2/htdocs/
EXPOSE 80
42 changes: 21 additions & 21 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions src/layouts/index-layout.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
import { ClientRouter } from "astro:transitions";

interface Props {
title: string;
}
Expand Down Expand Up @@ -48,7 +46,6 @@ const { title } = Astro.props;
/>
<link rel="manifest" href="/favicon/site.webmanifest" />
<title>{title}</title>
<ClientRouter />
</head>
<body>
<main>
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"~/*": ["src/*"]
}
},
"include": ["src"]
"include": ["src", "styled-system"]
}