fix: serve frontend static files and build in docker

This commit is contained in:
2026-03-31 13:01:55 +00:00
parent fbb64f19a3
commit 9ea4906406
2 changed files with 11 additions and 0 deletions

View File

@@ -7,6 +7,9 @@ RUN npm install
COPY . .
# Build the frontend
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]