Fix: Use correct CMD for wws container

The wws Docker image has an entrypoint, so we just pass the path as CMD.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-15 05:50:11 +01:00
parent c8a8ea007d
commit d851cef125

View File

@@ -7,5 +7,5 @@ COPY . .
EXPOSE 8080 EXPOSE 8080
# wws automatically serves files from /app # The wws image already has an entrypoint, just use the path
CMD ["wws", "."] CMD ["/app"]