From d851cef12597794cefa5c857245ecd27f9bbb323 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Mon, 15 Dec 2025 05:50:11 +0100 Subject: [PATCH] Fix: Use correct CMD for wws container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0affd6..806b217 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,5 @@ COPY . . EXPOSE 8080 -# wws automatically serves files from /app -CMD ["wws", "."] +# The wws image already has an entrypoint, just use the path +CMD ["/app"]