fix: set REPOS_DIR=/repo and create the directory in Dockerfile
Some checks failed
Deploy BetterBot / deploy (push) Failing after 3s
Deploy BetterBot / notify (push) Successful in 4s

This commit is contained in:
Andre Kamarudin 2026-04-19 08:06:03 +08:00
parent b41cf94d27
commit 7d6db76ceb
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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 = ""