From 9d83a9d2f0f3aeb715d9fd51b7b36ac7b743b8b1 Mon Sep 17 00:00:00 2001 From: christiankrag Date: Mon, 15 Dec 2025 05:53:36 +0100 Subject: [PATCH] Fix: Remove ENTRYPOINT override, use default from image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The wws image already has an entrypoint configured. We just need to pass the CMD arguments for --host and the path. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6fb516c..13b944f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,5 @@ COPY . . EXPOSE 8080 -# Run wws with explicit host binding to 0.0.0.0 for container networking -ENTRYPOINT ["wws"] +# Use the image's default entrypoint with --host flag for container networking CMD ["--host", "0.0.0.0", "/app"]