/[sudobot]/branches/3.x/Dockerfile
ViewVC logotype

Annotation of /branches/3.x/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File size: 347 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 FROM node:18-buster
2    
3     WORKDIR /app
4    
5     RUN rm -rvf build
6     RUN rm -rvf node_modules
7    
8     COPY package.json .
9     COPY package-lock.json .
10     COPY tsconfig.json .
11     COPY init.sh .
12     COPY src ./src
13    
14     RUN npm ci --progress=false --no-audit --loglevel=error
15     RUN npm run build
16    
17     COPY . .
18    
19     RUN test -f ./setup.sh && bash setup.sh
20    
21     EXPOSE 4000
22     CMD ["npm", "run", "start:node"]

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26