feat: switch to sweego
Some checks failed
Deploy / lint-build-deploy (push) Failing after 58s

This commit is contained in:
2026-02-01 14:06:33 +01:00
parent 36102810ac
commit e4c9b0d2ec
8 changed files with 8091 additions and 951 deletions

View File

@@ -1,4 +1,4 @@
FROM node:18-alpine AS builder
FROM node:20-alpine AS builder
WORKDIR /app
@@ -8,7 +8,9 @@ RUN npm install
COPY . .
RUN npm run build
FROM node:18-alpine
FROM node:20-alpine
RUN apk add --no-cache openssl
WORKDIR /app
@@ -17,6 +19,7 @@ ENV NODE_ENV=production
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/prisma ./prisma
EXPOSE 3000