This commit is contained in:
ZockerKatze
2025-06-16 17:47:03 +02:00
parent a93a259ee5
commit 1922125adb
7 changed files with 625 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
# Use Node.js as the base image
FROM node:18
# Set the working directory
WORKDIR /app
# Copy package.json and package-lock.json (if available)
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code
COPY . .
# Create a directory for markdown files
RUN mkdir -p /markdown
# Expose the port your app runs on
EXPOSE 3000
# Command to run the application
CMD ["npm", "start"]