Initial Code Commit

This commit is contained in:
2025-10-24 02:07:59 -04:00
commit f099f36838
63 changed files with 4425 additions and 0 deletions

25
Project/Dockerfile Executable file
View File

@@ -0,0 +1,25 @@
# Use the official Node.js image as the base image
FROM node:20
# Set the working directory
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install bun -g
RUN bun install
# Copy the rest of the application code
COPY . .
# Build the Next.js application
RUN bun run build
# Expose the port the app runs on
EXPOSE 3000
# Start the Next.js application
CMD ["bun", "start"]