fix: force absolute database path via environment variable to prevent data loss on container update
This commit is contained in:
@@ -9,7 +9,8 @@ RUN npm install
|
||||
|
||||
# Build the application
|
||||
COPY . .
|
||||
ENV DATABASE_URL="file:/app/data/dev.db"
|
||||
# Use a temporary DB for generation
|
||||
ENV DATABASE_URL="file:./temp.db"
|
||||
RUN npx prisma generate
|
||||
RUN npm run build
|
||||
|
||||
@@ -20,6 +21,7 @@ WORKDIR /app
|
||||
# Set production environment
|
||||
ENV NODE_ENV=production
|
||||
ENV PORT=3000
|
||||
# Force absolute path in production
|
||||
ENV DATABASE_URL="file:/app/data/dev.db"
|
||||
|
||||
# Install production dependencies only
|
||||
@@ -31,6 +33,8 @@ COPY --from=builder /app/.next ./.next
|
||||
COPY --from=builder /app/public ./public
|
||||
COPY --from=builder /app/next.config.mjs ./
|
||||
COPY --from=builder /app/prisma ./prisma
|
||||
# Copy dictionaries since they are needed at runtime
|
||||
COPY --from=builder /app/dictionaries ./dictionaries
|
||||
COPY --from=builder /app/node_modules/.prisma ./node_modules/.prisma
|
||||
COPY --from=builder /app/node_modules/@prisma ./node_modules/@prisma
|
||||
|
||||
@@ -43,7 +47,8 @@ RUN printf "#!/bin/sh\n\
|
||||
echo \"Starting initialization...\"\n\
|
||||
echo \"Database URL: \$DATABASE_URL\"\n\
|
||||
echo \"Running migrations...\"\n\
|
||||
npx prisma migrate deploy\n\
|
||||
# Use npx prisma migrate deploy with explicit schema path to be safe\n\
|
||||
npx prisma migrate deploy --schema ./prisma/schema.prisma\n\
|
||||
echo \"Starting application...\"\n\
|
||||
npm start" > /app/start.sh
|
||||
|
||||
|
||||
Reference in New Issue
Block a user