arcade-mcp/examples/serving_tools/docker/Dockerfile
Eric Gustin d7107c107d
Update examples (#601)
* Reorganize the examples folder
* Add two mcp server examples. A local filesystem server and a simple
'starter' server.
2025-10-03 17:37:22 -07:00

10 lines
205 B
Docker

ARG VERSION=latest
# Base worker image
FROM ghcr.io/arcadeai/worker-base:${VERSION}
# Copy requirements and constraints
COPY toolkits.txt ./
# Install toolkits from file
RUN pip install -r toolkits.txt