From ad39d84a5282b4da27dc7b6386d86765100c2ead Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Fri, 13 Feb 2026 15:50:49 +0000 Subject: [PATCH] Initial commit: lasttest 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"]