Skip to content

Commit 2367c8e

Browse files
CopilotMossaka
andcommitted
Address review feedback: use Rust 1.90, streamable-http default, merge Docker docs with Installation
Co-authored-by: Mossaka <[email protected]>
1 parent 5c0c60d commit 2367c8e

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
88
RUN apt-get update && \
@@ -53,6 +53,6 @@ WORKDIR /home/wassette
5353
# Expose the default HTTP port (when using --http or --sse)
5454
EXPOSE 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"]

Dockerfile.prebuilt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ WORKDIR /home/wassette
3737
# Expose the default HTTP port (when using --http or --sse)
3838
EXPOSE 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"]

docs/SUMMARY.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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

@@ -21,10 +22,6 @@
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)

0 commit comments

Comments
 (0)