Added base project

This commit is contained in:
2025-12-04 20:45:22 +00:00
parent dc16a150e1
commit 2f47f69adb
148 changed files with 3289 additions and 4212 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM oven/bun:1 AS build-stage
WORKDIR /app
COPY package.json ./
RUN bun install
COPY . .
RUN bun run build
FROM nginx:alpine
COPY --from=build-stage /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80