From 73e397be5bf8cb0b3d1d347762f60a8784f43e05 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:36:19 +0100 Subject: [PATCH] fix: util folder getting copied over to root --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f541c6d..3f81cfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ WORKDIR /app COPY --from=build /app/dist ./dist COPY --from=build /app/schemas ./schemas -COPY --from=build /app/util ./ +COPY --from=build /app/util ./util COPY --from=build /app/images ./images COPY --from=build /app/node_modules ./node_modules COPY --from=build /app/package.json ./package.json