Reverted back to node

This commit is contained in:
MarcUs7i 2025-07-04 20:50:24 +02:00
parent e189c900cf
commit 343d7cd58f
4 changed files with 18638 additions and 2736 deletions

View file

@ -1,15 +1,15 @@
FROM oven/bun:1.1.13-debian AS build FROM node:20-alpine AS build
WORKDIR /app WORKDIR /app
COPY package.json bun.lock ./ COPY package*.json ./
RUN bun install RUN npm ci
COPY . . COPY . .
RUN bun run build RUN npm run build
FROM oven/bun:1.1.13-debian FROM node:20-alpine
WORKDIR /app WORKDIR /app
COPY --from=build /app/.output /app/.output COPY --from=build /app/.output /app/.output
ENV NODE_ENV=production ENV NODE_ENV=production
ENV PORT=3000 ENV PORT=3000
EXPOSE 3000 EXPOSE 3000
CMD ["bun", ".output/server/index.mjs"] CMD ["node", ".output/server/index.mjs"]

2725
bun.lock

File diff suppressed because it is too large Load diff

18631
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -36,9 +36,5 @@
"@iconify-json/simple-icons": "^1.2.29", "@iconify-json/simple-icons": "^1.2.29",
"@nuxtjs/mdc": "^0.16.1", "@nuxtjs/mdc": "^0.16.1",
"@tailwindcss/typography": "^0.5.16" "@tailwindcss/typography": "^0.5.16"
}, }
"trustedDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide"
]
} }