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>
13 lines
221 B
Docker
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"]
|