File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 22# This Dockerfile provides a containerized runtime for Wassette with additional security isolation
33
44# Stage 1: Build the Wassette binary
5- FROM rust:1.83 -bookworm AS builder
5+ FROM rust:1.90 -bookworm AS builder
66
77# Install ca-certificates for HTTPS support during build
88RUN apt-get update && \
@@ -53,6 +53,6 @@ WORKDIR /home/wassette
5353# Expose the default HTTP port (when using --http or --sse)
5454EXPOSE 9001
5555
56- # Default command: start Wassette with stdio transport
56+ # Default command: start Wassette with streamable-http transport
5757# Override this in docker run or docker-compose for different transports
58- CMD ["wassette" , "serve" , "--stdio " ]
58+ CMD ["wassette" , "serve" , "--streamable-http " ]
Original file line number Diff line number Diff line change @@ -37,6 +37,6 @@ WORKDIR /home/wassette
3737# Expose the default HTTP port (when using --http or --sse)
3838EXPOSE 9001
3939
40- # Default command: start Wassette with stdio transport
40+ # Default command: start Wassette with streamable-http transport
4141# Override this in docker run or docker-compose for different transports
42- CMD ["wassette", "serve", "--stdio "]
42+ CMD ["wassette", "serve", "--streamable-http "]
Original file line number Diff line number Diff line change 22
33- [ Overview] ( ./overview.md )
44- [ Installation] ( ./installation.md )
5+ - [ Docker] ( ./deployment/docker.md )
56- [ MCP Clients] ( ./mcp-clients.md )
67- [ FAQ] ( ./faq.md )
78
2122
2223- [ CLI] ( ./reference/cli.md )
2324
24- # Deployment
25-
26- - [ Docker] ( ./deployment/docker.md )
27-
2825# Design & Architecture
2926
3027- [ Architecture] ( ./design/architecture.md )
You can’t perform that action at this time.
0 commit comments