From 8c29d5cfe50c0161d7a3e5e99ac7fb808a25f35b Mon Sep 17 00:00:00 2001 From: hengyan <2653631564@qq.com> Date: Tue, 21 Jul 2026 17:20:40 +0800 Subject: [PATCH] fix: include config.local.json in Docker image --- .dockerignore | 1 - Dockerfile | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index ff4a743..62c82c3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,7 +4,6 @@ __pycache__/ *.pyd .pytest_cache/ .env -config.local.json state.db /data/ .git/ diff --git a/Dockerfile b/Dockerfile index 02d13bd..7861850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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