Files
wws-functions/Dockerfile
christiankrag d851cef125 Fix: Use correct CMD for wws container
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 <noreply@anthropic.com>
2025-12-15 05:50:11 +01:00

12 lines
169 B
Docker

FROM ghcr.io/vmware-labs/wws:latest
WORKDIR /app
# Copy all functions
COPY . .
EXPOSE 8080
# The wws image already has an entrypoint, just use the path
CMD ["/app"]