Files
wws-functions/Dockerfile
christiankrag 9d83a9d2f0 Fix: Remove ENTRYPOINT override, use default from image
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 <noreply@anthropic.com>
2025-12-15 05:53:36 +01:00

12 lines
208 B
Docker

FROM ghcr.io/vmware-labs/wws:latest
WORKDIR /app
# Copy all functions
COPY . .
EXPOSE 8080
# Use the image's default entrypoint with --host flag for container networking
CMD ["--host", "0.0.0.0", "/app"]