From cadab4d29bf0855feb2e37dafce086e05b290b8b Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 17 Sep 2025 19:11:48 -0600 Subject: [PATCH] Ensure Docker builds copy default config --- Dockerfile-Dev | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile-Dev b/Dockerfile-Dev index efb8bd074e..cf0b9591f0 100644 --- a/Dockerfile-Dev +++ b/Dockerfile-Dev @@ -8,6 +8,8 @@ WORKDIR /usr/src/habitica COPY ["package.json", "package-lock.json", "./"] # Copy the remaining source files in. COPY . /usr/src/habitica +# Provide a default configuration for build-time tooling +RUN cp config.json.example config.json # Install dependencies RUN npm install RUN npm run postinstall