fix: update import paths for components and utilities to relative paths

This commit is contained in:
2025-10-17 22:41:52 +02:00
parent 02643e3702
commit 337b07f3c5
33 changed files with 3050 additions and 70 deletions

View File

@@ -1,10 +1,13 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY pnpm-lock.yaml ./
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile
COPY . .
ENV NEXTAUTH_SECRET=your_super_secret_key_here_change_in_production
RUN npx prisma generate
RUN npm run build
RUN npx prisma db push
RUN pnpm run build
EXPOSE 3000
CMD ["npm", "start"]
CMD ["pnpm", "start"]