From 1c6f6ae16491118d8099b0416119c760c379ea6e Mon Sep 17 00:00:00 2001 From: zhanggangyong Date: Thu, 5 Feb 2026 07:17:35 +0000 Subject: [PATCH] Initial commit: currency_converter_agent - 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"]