- Add health check API endpoint (/api) - Add chat proxy to n8n workflow (/chat) - Add webhook receiver for external integrations (/webhook) - Add Dockerfile for container deployment - Add wws.toml configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
155 B
Docker
12 lines
155 B
Docker
FROM ghcr.io/vmware-labs/wws:latest
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy all functions
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
# wws automatically serves files from /app
|
|
CMD ["wws", "."]
|