From 93df6596251a7dd79d7f31102c7c4dc0293e3cc7 Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Thu, 22 Aug 2024 00:32:39 +0200 Subject: [PATCH] fix: never trust copilot --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7412289..fa83eab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN yarn install --production --ignore-scripts --prefer-offline FROM node:lts-alpine WORKDIR /app COPY --from=builder /app/build build/ -COPY --from=builder /app/public public/ +COPY --from=builder /app/static static/ COPY --from=builder /app/db db/ COPY --from=builder /app/node_modules node_modules/ COPY package.json .