Initial commit: migrated from GitHub

This commit is contained in:
haunter
2025-07-24 13:09:51 +02:00
parent 05908e3b03
commit c187b7a395
5 changed files with 73 additions and 19 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
# Use Node LTS image
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy dependency files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the app
COPY . .
# Expose development port
EXPOSE 3000
# Start the dev server
CMD ["npm", "run", "dev"]