Initial commit: RSVP Manager with React frontend and Express backend

This commit is contained in:
2025-04-29 13:08:01 -04:00
commit b80879f46b
17 changed files with 697 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY frontend/package*.json ./frontend/
# Install dependencies
RUN npm install
RUN cd frontend && npm install
# Copy source files
COPY . .
# Build frontend
RUN cd frontend && npm run build
# Expose port
EXPOSE 3000
# Start the application
CMD ["npm", "start"]