first commit

This commit is contained in:
MrUnknownDE
2025-12-28 17:57:20 +01:00
commit 9979697acf
17 changed files with 4755 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:22-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install --omit=dev
# Copy source code
COPY src/ ./src/
# Expose port
EXPOSE 3000
# Start the application
CMD ["node", "src/server.js"]