This commit is contained in:
2025-09-23 14:13:24 +02:00
commit 58b5e6b074
103 changed files with 44000 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"]