From acfd950e625d09e76e2e6811a2af481e4d7a2308 Mon Sep 17 00:00:00 2001 From: Taro Suzuki Date: Mon, 9 Mar 2026 00:34:42 +0000 Subject: [PATCH] Add Dockerfile for containerized deployment Co-authored-by: pokemon918 <132939190+pokemon918@users.noreply.github.com> Co-authored-by: xfactor-toml <154992305+xfactor-toml@users.noreply.github.com> Co-authored-by: omni-omega <234262665+omni-omega@users.noreply.github.com> Co-authored-by: phantomdev0826 <218786589+phantomdev0826@users.noreply.github.com> --- Dockerfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b7f5e09 --- /dev/null +++ b/Dockerfile @@ -0,0 +1 @@ +FROM python:3.11-slim\n\nWORKDIR /app\n\nCOPY requirements.txt .\nRUN pip install --no-cache-dir -r requirements.txt\n\nCOPY . .\n\nEXPOSE 8000\n\nCMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file