From 76a50ff766295037a80dfa5c379804ed2f928cee Mon Sep 17 00:00:00 2001 From: Jonas <44544539+likeazir@users.noreply.github.com> Date: Thu, 3 Aug 2023 12:39:02 +0200 Subject: [PATCH] dockerfile: use --no-cache-dir --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4638a6..296ca0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM python:latest WORKDIR /app COPY requirements.txt requirements.txt -RUN pip3 install -r requirements.txt +RUN pip3 install -r requirements.txt --no-cache-dir COPY . . -CMD ["python", "./main.py", "owobot/owo.toml"] \ No newline at end of file +CMD ["python", "./main.py", "owobot/owo.toml"]