/[sudobot]/trunk/Dockerfile
ViewVC logotype

Diff of /trunk/Dockerfile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 355 by rakin, Mon Jul 29 17:29:45 2024 UTC revision 358 by rakin, Mon Jul 29 17:29:46 2024 UTC
# Line 1  Line 1 
1  FROM node:18-buster  FROM node:18-buster
2  RUN apt update && apt upgrade -y  
3  WORKDIR /app  WORKDIR /app
4  COPY . .  
5  RUN npm install -D  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  RUN npm run build
13    
14  COPY . .  COPY . .
15  COPY ./config /app/config  
 CMD ["npm", "run", "start:node"]  
16  EXPOSE 4000  EXPOSE 4000
17    CMD ["npm", "run", "start:node"]

Legend:
Removed from v.355  
changed lines
  Added in v.358

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26