Admin Panel storage test

This commit is contained in:
michi 2025-08-26 15:09:27 +02:00
parent 8e92d758f9
commit 0bb5cef903
11 changed files with 12 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -20,6 +20,10 @@ COPY --from=builder /app/next.config.js ./
COPY --from=builder /app/public ./public
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
COPY --from=builder /app/data ./data
# Set correct permissions for data directory
RUN chown -R nextjs:nodejs ./data
USER nextjs