From b1e58c4cdef8e4da2366783995773ca9eb478fe7 Mon Sep 17 00:00:00 2001 From: Trevor Sharp Date: Mon, 6 Jan 2025 02:24:51 +0000 Subject: [PATCH] Add public folder to docker container --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index dae2195..70894c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,7 @@ RUN npm run build FROM base AS release COPY --from=install /app/node_modules ./node_modules +COPY --from=build /app/public ./public COPY --from=build /app/.next ./.next EXPOSE 3000