working pre-update

This commit is contained in:
2025-04-26 03:20:54 +02:00
parent 2233b4a44c
commit 27a1817595
20 changed files with 134 additions and 1175 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM node:slim
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy application code
COPY . .
# Expose ports
EXPOSE 80
# Start the application
CMD ["node", "server.js"]