mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
5a087885a2
* Add hosted agent sample with observability * Address comments * Remove unneeded changes * Update README
16 lines
264 B
Docker
16 lines
264 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . user_agent/
|
|
WORKDIR /app/user_agent
|
|
|
|
RUN if [ -f requirements.txt ]; then \
|
|
pip install -r requirements.txt; \
|
|
else \
|
|
echo "No requirements.txt found"; \
|
|
fi
|
|
|
|
EXPOSE 8088
|
|
|
|
CMD ["python", "main.py"] |