first commit

This commit is contained in:
2026-02-01 04:39:12 -05:00
commit bb35db384f
11 changed files with 819 additions and 0 deletions

13
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18-alpine AS build
WORKDIR /app
# Frontend doesn't need a build step for this simple setup
COPY . .
# Serve with a simple HTTP server
RUN npm install -g http-server
EXPOSE 3000
CMD ["http-server", ".", "-p", "3000", "-c-1"]