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