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