Initialize backend and frontend structure with Docker setup and dependencies
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
FROM node:20
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user