From d17ce8380d3732508ca106772128a5ec0714781d Mon Sep 17 00:00:00 2001 From: Cody Eding Date: Thu, 19 Feb 2026 19:41:58 -0500 Subject: [PATCH] fix: supress dockerfile build warnings --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 073496d..40167e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,12 +4,12 @@ ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 # Install SQLite -RUN apt-get update && apt-get install -y sqlite3 +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y sqlite3 WORKDIR /app COPY requirements.txt . -RUN pip install --no-cache-dir --upgrade pip \ - && pip install --no-cache-dir -r requirements.txt +RUN pip install --root-user-action=ignore --no-cache-dir --upgrade pip \ + && pip install --root-user-action=ignore --no-cache-dir -r requirements.txt # Create database directory and set permissions RUN mkdir -p /app/data && chown -R www-data:www-data /app/data