From f70c0eaa5fe605d71479f49d27ccc47e8774dec5 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 11 Apr 2026 08:53:35 +0700 Subject: [PATCH] fix(client): drop stale COPY public in Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docker build failed with "/public: not found" at the client stage. The client tree has never contained a public/ directory (vite doesn't need one for this project — index.html lives at the client root and vite.config.js has no publicDir override). Remove the dead COPY line. Verified: docker build -f client/Dockerfile client succeeds end-to-end. --- client/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 9cf0c8f..0404f39 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -6,7 +6,6 @@ COPY package.json package-lock.json ./ RUN npm ci COPY index.html vite.config.js ./ -COPY public public COPY src src RUN npm run build