Enhance entrypoint script for migration handling: Improve error resolution process by adding direct database updates for missing migration files, and refine output messages for clarity during deployment.
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 3m6s

This commit is contained in:
Julien Froidefond
2025-12-15 17:58:40 +01:00
parent d45475fb5a
commit 9b9cc3885a
8 changed files with 78 additions and 56 deletions

View File

@@ -32,7 +32,7 @@ WORKDIR /app
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
RUN apk add --no-cache python3 make g++
RUN apk add --no-cache python3 make g++ sqlite
RUN addgroup --system --gid 1001 nodejs && \
adduser --system --uid 1001 nextjs