diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 7370abe..bc394d2 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -70,4 +70,7 @@ jobs: run: bun docker:api - name: Build and Push App - run: bun docker:app \ No newline at end of file + run: bun docker:app + + - name: Build and Push Page + run: bun docker:page \ No newline at end of file diff --git a/apps/app/vite.config.ts b/apps/app/vite.config.ts index ba18c28..a7a2dc7 100644 --- a/apps/app/vite.config.ts +++ b/apps/app/vite.config.ts @@ -4,6 +4,9 @@ import { defineConfig } from 'vite' // https://vitejs.dev/config/ export default defineConfig({ + server: { + port: 4000, + }, build: { outDir: '../../build/app', emptyOutDir: true, diff --git a/apps/page/astro.config.mjs b/apps/page/astro.config.mjs index 2d49248..79d844f 100644 --- a/apps/page/astro.config.mjs +++ b/apps/page/astro.config.mjs @@ -12,7 +12,9 @@ export default defineConfig({ output: 'server', outDir: '../../build/page', integrations: [react(), tailwind({ nesting: true })], - + server: { + port: 4020, + }, adapter: node({ mode: 'standalone', }), diff --git a/apps/website/astro.config.mjs b/apps/website/astro.config.mjs index 7083e12..22276f6 100644 --- a/apps/website/astro.config.mjs +++ b/apps/website/astro.config.mjs @@ -2,6 +2,9 @@ import starlight from '@astrojs/starlight' import { defineConfig } from 'astro/config' export default defineConfig({ + server: { + port: 4010, + }, outDir: '../../build/website', integrations: [ starlight({ diff --git a/bun.lockb b/bun.lockb index acd5446..c89db59 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/ci/docker/page/Dockerfile b/ci/docker/page/Dockerfile new file mode 100644 index 0000000..8f96002 --- /dev/null +++ b/ci/docker/page/Dockerfile @@ -0,0 +1,12 @@ +FROM oven/bun:1 + +COPY ./build/page/dist . +COPY ./node_modules ./node_modules + +ENV HOST=0.0.0.0 +ENV PORT=4020 + +USER bun +EXPOSE 4020/tcp + +ENTRYPOINT [ "bun", "run", "server/entry.mjs" ] \ No newline at end of file diff --git a/package.json b/package.json index 12ed4d2..d061043 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,10 @@ "docker:api": "bun docker:api:build && bun docker:api:push", "docker:app:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/app -f ci/docker/app/Dockerfile .", "docker:app:push": "docker push git.hashdot.co/boring.tools/boring.tools/app", - "docker:app": "bun docker:app:build && bun docker:app:push" + "docker:app": "bun docker:app:build && bun docker:app:push", + "docker:page:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/page -f ci/docker/page/Dockerfile .", + "docker:page:push": "docker push git.hashdot.co/boring.tools/boring.tools/page", + "docker:page": "bun docker:page:build && bun docker:page:push" }, "packageManager": "bun@1.1.29", "workspaces": [