refactor: project folder names

This commit is contained in:
martin legrand
2025-04-16 20:35:33 +02:00
parent 023c183e85
commit e1706d97f2
32 changed files with 8 additions and 380 deletions
@@ -0,0 +1,16 @@
FROM node:18
WORKDIR /app
# Install dependencies
COPY package.json package-lock.json ./
RUN npm install
# Copy application code
COPY . .
# Expose port
EXPOSE 3000
# Run the application
CMD ["npm", "start"]