Add Node.js manager service and updated docker-compose
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json* ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm run build
|
||||
|
||||
ENV PORT=3000
|
||||
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user