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"]