backend docker refactor and frontend cleanup

This commit is contained in:
fred 2026-01-28 10:36:11 -08:00
parent 96443b6afe
commit 63e33a45b4
14 changed files with 130 additions and 113 deletions

13
frontend/Dockerfile.dev Normal file
View file

@ -0,0 +1,13 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install;
COPY . .
EXPOSE 80
CMD npm run dev