From 18eb150d7d38c478c14bd2c9d350a7ca7c0a8a12 Mon Sep 17 00:00:00 2001 From: -Puter <22245429+puterhimself@users.noreply.github.com> Date: Wed, 29 Jul 2026 08:13:52 +0530 Subject: [PATCH] fix: serve web assets from app directory --- apps/web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 5b208e9..402b362 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -27,10 +27,10 @@ ENV HOST=0.0.0.0 ENV NODE_ENV=production ENV PORT=3000 -WORKDIR /app +WORKDIR /app/apps/web COPY --from=build /app /app EXPOSE 3000 -CMD ["node", "apps/web/node_modules/.bin/react-router-serve", "apps/web/build/server/index.js"] +CMD ["node", "node_modules/.bin/react-router-serve", "build/server/index.js"]