Initial Commit

This commit is contained in:
2025-07-08 05:08:10 +01:00
commit 7e445551af
28 changed files with 1872 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# Use the official Node.js image as base
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Build the application
RUN npm run build
# Install a simple HTTP server to serve the built files
RUN npm install -g serve
# Start the application
CMD ["serve", "-s", "dist"]