diff --git a/Dockerfile b/Dockerfile index 76e977d..5f1610b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM oven/bun:1-alpine AS runtime WORKDIR /app -COPY --from=builder /app/.output ./.output +COPY --from=builder /app/dist ./dist EXPOSE 3000 @@ -25,4 +25,4 @@ ENV NITRO_PORT=3000 HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \ CMD bun -e "fetch('http://localhost:3000/api/health').then(r => r.ok ? process.exit(0) : process.exit(1)).catch(() => process.exit(1))" -CMD ["bun", "run", "./.output/server/index.mjs"] +CMD ["bun", "run", "./dist/server/index.mjs"] diff --git a/package.json b/package.json index d3b24e2..09d0464 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,8 @@ "scripts": { "dev": "vite dev --host 0.0.0.0", "build": "vite build && tsc --noEmit", - "start": "bun run .output/server/index.mjs", - "start:node": "node .output/server/index.mjs" + "start": "bun run dist/server/index.mjs", + "start:node": "node dist/server/index.mjs" }, "dependencies": { "@hello-pangea/dnd": "^18.0.1", diff --git a/vite.config.ts b/vite.config.ts index 2209fba..221edce 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -6,7 +6,7 @@ import react from '@vitejs/plugin-react'; export default defineConfig({ server: { port: 3000, - allowedHosts: ["dev.flexxon.app"] + allowedHosts: ["dev.flexxon.app", "flexxon.app"] }, plugins: [ tsConfigPaths({