fix: include config.local.json in Docker image

This commit is contained in:
2026-07-21 17:20:40 +08:00
parent d17bb21bbb
commit 8c29d5cfe5
2 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,6 @@ __pycache__/
*.pyd
.pytest_cache/
.env
config.local.json
state.db
/data/
.git/

View File

@@ -8,6 +8,7 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
COPY seeds ./seeds
COPY scripts ./scripts
COPY config.local.json ./
EXPOSE 8080