From 11723b3b28619d6241143512b8c81dbc4c8ad9a8 Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Fri, 30 Jan 2026 11:53:24 +0000 Subject: [PATCH] Initial commit: ai-bbc-v2 with 1 tools - Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bb705df --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +ENV PORT=8000 +EXPOSE 8000 + +CMD ["python", "run_api_server.py"]