Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions copilot/mcp-server-api/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,22 @@ exec: true
network:
connect: true # Enable Service Connect for intra-environment traffic between services.

# storage:
# readonly_fs: true # Limit to read-only access to mounted root filesystems.
storage:
readonly_fs: true

variables:
PYTHONDONTWRITEBYTECODE: "1"

# Allow writes to /tmp
taskdef_overrides:
- path: ContainerDefinitions[0].MountPoints[-]
value:
SourceVolume: "ephemeral-scratch"
ContainerPath: "/tmp"
ReadOnly: false
- path: Volumes[-]
value:
Name: "ephemeral-scratch"

# Optional fields for more advanced use-cases.
#
Expand Down