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

Contents of /branches/4.x/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File size: 306 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 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 EXPOSE 4000
20 CMD ["npm", "run", "start:node"]

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26