Files
wws-functions/Dockerfile
christiankrag cc813e1238 Fix: Bind wws to 0.0.0.0 for container networking
The wws server was binding to 127.0.0.1 by default, which doesn't
allow external connections. Explicitly set --host 0.0.0.0.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 05:51:25 +01:00

13 lines
221 B
Docker

FROM ghcr.io/vmware-labs/wws:latest
WORKDIR /app
# Copy all functions
COPY . .
EXPOSE 8080
# Run wws with explicit host binding to 0.0.0.0 for container networking
ENTRYPOINT ["wws"]
CMD ["--host", "0.0.0.0", "/app"]