build: add comprehensive docker files for frontend & backend
Update docker-compose.yml to include new Dockerfiles
This commit is contained in:
9
frontend/Dockerfile
Normal file
9
frontend/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
EXPOSE 5173
|
||||
CMD ["npm", "run", "dev"]
|
||||
Reference in New Issue
Block a user