From 7d6db76ceb14380f90c09da200c4bb8183129d36 Mon Sep 17 00:00:00 2001 From: Andre K Date: Sun, 19 Apr 2026 08:06:03 +0800 Subject: [PATCH] fix: set REPOS_DIR=/repo and create the directory in Dockerfile --- Dockerfile | 2 +- config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4f468b0..3a87e81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt-get update \ WORKDIR /app # Site project mount points -RUN mkdir -p /site /memoraiz /data +RUN mkdir -p /site /memoraiz /data /repo COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt diff --git a/config.py b/config.py index 4af36c1..bd7479a 100644 --- a/config.py +++ b/config.py @@ -48,7 +48,7 @@ class Settings(BaseSettings): ADVISOR_MAX_TOKENS: int = 700 # Paths - REPOS_DIR: str = "/repos" + REPOS_DIR: str = "/repo" DATA_DIR: str = "/data" TG_PERSISTENCE_DIR: str = ""