From 3ee89abeaa51b4c663d2558393a1292e4bd2dfd7 Mon Sep 17 00:00:00 2001 From: Tetiana Mohorian Date: Tue, 20 May 2025 10:59:49 +0000 Subject: [PATCH] Odstranit z2/Dockerfile --- z2/Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 z2/Dockerfile diff --git a/z2/Dockerfile b/z2/Dockerfile deleted file mode 100644 index 8709461..0000000 --- a/z2/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM python:3.10 - -WORKDIR /app - -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -COPY . /app -COPY static/ ./static/ -WORKDIR /app - -CMD ["python", "bot.py"]