This commit is contained in:
Your Name
2025-08-17 20:07:36 -04:00
commit d0845a8323
7 changed files with 1411 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:22-alpine
WORKDIR /app
# Copy package files first for better Docker layer caching
COPY package.json ./
# Install dependencies
RUN npm install --production
# Copy application files
COPY app.js ./
COPY views/ ./views/
# Expose port
EXPOSE 3001
# Start the application
CMD ["node", "app.js"]