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>
12 lines
169 B
Docker
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"]
|