initial commit

This commit is contained in:
2024-12-17 13:07:06 -08:00
commit 3a3382ffff
183 changed files with 186691 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Use Node.js LTS
FROM node:18
# Set the working directory
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm install
# Copy the code
COPY . .
# Expose the frontend port
EXPOSE 3000
# Start the app
CMD ["npm", "run", "dev"]