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 *.pyd
.pytest_cache/ .pytest_cache/
.env .env
config.local.json
state.db state.db
/data/ /data/
.git/ .git/

View File

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