split containers

This commit is contained in:
2026-01-29 00:40:29 -05:00
parent b2886cbcb0
commit f689689281
4 changed files with 61 additions and 7 deletions

12
frontend/Dockerfile.dev Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]