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
Dockerfile.dev Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18-alpine
WORKDIR /app
COPY backend/package*.json ./
RUN npm install
COPY backend/ ./
EXPOSE 4000
CMD ["node", "src/index.js"]