/[sudobot]/trunk/Dockerfile
ViewVC logotype

Contents of /trunk/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 358 - (show annotations)
Mon Jul 29 17:29:46 2024 UTC (8 months ago) by rakin
File size: 262 byte(s)
build(docker): use `npm ci`
1 FROM node:18-buster
2
3 WORKDIR /app
4
5 COPY package.json .
6 COPY package-lock.json .
7 COPY tsconfig.json .
8 COPY init.sh .
9 COPY src ./src
10
11 RUN npm ci --progress=false --no-audit --loglevel=error
12 RUN npm run build
13
14 COPY . .
15
16 EXPOSE 4000
17 CMD ["npm", "run", "start:node"]

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26