mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-21 21:16:12 +01:00
Reverted back to node
This commit is contained in:
parent
e189c900cf
commit
343d7cd58f
4 changed files with 18638 additions and 2736 deletions
12
Dockerfile
12
Dockerfile
|
|
@ -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"]
|
||||||
18631
package-lock.json
generated
Normal file
18631
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -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"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue