From 8d84931fca4a3385cb94691fd6add0458bc2a03f Mon Sep 17 00:00:00 2001 From: FazziCLAY Date: Sun, 5 Apr 2026 22:35:03 +0300 Subject: [PATCH] add Dockerfile and requirements.txt --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index e69de29..604a7d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.11-slim +WORKDIR /app +COPY requirements.txt . +RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir -r requirements.txt +COPY . . +CMD ["python", "-u", "main.py"] \ No newline at end of file