# Build with  'podman build . -f example/ollamaagent-containerfile -t a2a-ollama-agent'
# Run with 'podman run --network=host a2a-ollama-agent'
FROM dart:3.12.0
WORKDIR /app
COPY . .
RUN dart pub get
RUN dart compile exe example/a2a_server_agent_ollama.dart
EXPOSE 41242
ENTRYPOINT ["/app/example/a2a_server_agent_ollama.exe"]
