This commit is contained in:
2025-12-22 14:47:25 -05:00
parent d4e859f9a7
commit 00e9eb8986
81 changed files with 13933 additions and 0 deletions

18
Dockerfile.frontend Normal file
View File

@@ -0,0 +1,18 @@
FROM node:20-slim
WORKDIR /app
# Copy package files from nested directory
COPY frontend/frontend/package*.json ./
# Install dependencies
RUN npm install
# Copy application code
COPY frontend/frontend ./
# Expose Vite dev server port
EXPOSE 3000
# Run dev server with host 0.0.0.0 to allow access from outside container
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]