* Reorganize the examples folder * Add two mcp server examples. A local filesystem server and a simple 'starter' server.
10 lines
205 B
Docker
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
|