From b70388db6f9853a6f0e671c4399f26fa9dfab0d6 Mon Sep 17 00:00:00 2001 From: DerTyp7 Date: Thu, 9 Oct 2025 00:22:56 +0200 Subject: [PATCH] Create images folder in public directory --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b2363b7..3f7fa0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,7 @@ COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static RUN mkdir -p data && chown nextjs:nodejs data +RUN mkdir -p public/images && chown nextjs:nodejs public/images USER nextjs