From 1a00b0715b5f3d54e7e63f1c8541e7d1e8c7978a Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Mon, 29 Sep 2025 09:45:36 -0400 Subject: [PATCH] Remove all mdbible references from codebase - updated README, backend error message, and Dockerfile --- README.md | 1 - backend/Dockerfile | 9 --------- 2 files changed, 10 deletions(-) diff --git a/README.md b/README.md index 22db73f0..86bb5f31 100644 --- a/README.md +++ b/README.md @@ -314,7 +314,6 @@ For issues and questions: ## Acknowledgments -- **Bible data source** - [mdbible](https://github.com/lguenth/mdbible) - Markdown formatted Bible text - **React** - Frontend framework - **Node.js** - Backend runtime - **Docker** - Containerization platform diff --git a/backend/Dockerfile b/backend/Dockerfile index d3bdf71c..7a18dbad 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -2,9 +2,6 @@ FROM node:18-alpine WORKDIR /app -# Install git for cloning the bible repository -RUN apk add --no-cache git - # Copy package files COPY package*.json ./ @@ -14,12 +11,6 @@ RUN npm ci --only=production # Copy application code COPY . . -# Clone ESV Bible markdown repository -RUN git clone https://github.com/lguenth/mdbible.git /tmp/mdbible && \ - mkdir -p /app/bible-data && \ - cp -r /tmp/mdbible/by_chapter/* /app/bible-data/ && \ - rm -rf /tmp/mdbible - # Expose port EXPOSE 3000