first commit

This commit is contained in:
2025-11-27 11:44:23 +01:00
commit 989253c72f
32 changed files with 4983 additions and 0 deletions

17
Dockerfile.dev Executable file
View File

@@ -0,0 +1,17 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package.json package-lock.json* ./
# Install dependencies
RUN npm install
# Copy app files
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]