/[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 357 by rakin, Mon Jul 29 17:29:45 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    COPY package.json .
6    COPY tsconfig.json .
7    COPY src .
8    
9  RUN npm install -D  RUN npm install -D
10  RUN npm run build  RUN npm run build
11    
12  COPY . .  COPY . .
13  COPY ./config /app/config  
 CMD ["npm", "run", "start:node"]  
14  EXPOSE 4000  EXPOSE 4000
15    CMD ["npm", "run", "start:node"]

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26