Initial setup for ESV Bible Markdown project

This commit is contained in:
Ryderjj89
2025-09-13 11:58:52 -04:00
commit 921a233c51
6 changed files with 278 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy application code
COPY . .
# Expose port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]