From 5134eb4a93af90859eb2b2b8a13f0d14e3aeadce Mon Sep 17 00:00:00 2001 From: Thomas Faour Date: Sun, 22 Jun 2025 00:16:12 -0400 Subject: [PATCH] docker file fix --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index f05d8b3..3ecbb78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,11 +57,7 @@ COPY web/package.json web/package-lock.json ./ RUN npm ci # Copy source files -COPY web/src ./src -COPY web/index.html ./ -COPY web/vite.config.ts ./ -COPY web/tsconfig.json ./ -COPY web/tsconfig.node.json ./ +COPY web/ ./ # Build the frontend RUN npm run build