Initial local commit

This commit is contained in:
2025-09-03 11:07:29 +02:00
commit e6cf08893e
20 changed files with 11387 additions and 0 deletions

18
dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Use official Node.js LTS image
FROM node:18
# Set working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package.json package-lock.json* ./
RUN npm install --production
# Copy the rest of the app
COPY . .
# Expose the port (default 3000)
EXPOSE 3000
# Start the server
CMD ["npm", "start"]