From 4d75830b79fc7a2c90ae4935b18cde26dc8446c3 Mon Sep 17 00:00:00 2001 From: "Hunter W." Date: Sun, 31 May 2026 10:53:52 -0400 Subject: [PATCH] look, sometimes you just gotta... --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e1226b..690780d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,10 +24,9 @@ ENV PORT=3050 RUN addgroup --system --gid 1001 app && \ adduser --system --uid 1001 app -COPY --from=build /app/public ./.next +COPY --from=build /app/public ./public COPY --from=build --chown=app:app /app/.next/standalone ./ COPY --from=build --chown=app:app /app/.next/static ./.next/static -COPY --from=build --chown=app:app /app/next.config.ts ./ USER app EXPOSE 3050