understanding commited on
Commit
e0d80ad
·
verified ·
1 Parent(s): 624938d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -16,9 +16,11 @@ WORKDIR /home/node/tav
16
  COPY package*.json ./
17
 
18
  RUN chmod -R 777 /home/node/tav/
 
 
19
  # Copy any local custom files (if applicable, e.g., your bot code)
20
  # Uncomment this line if you have local modifications to include
21
- # COPY . .
22
 
23
  # Expose any necessary ports (optional, adjust if your bot uses a specific port)
24
  # EXPOSE 3000
 
16
  COPY package*.json ./
17
 
18
  RUN chmod -R 777 /home/node/tav/
19
+
20
+ RUN yarn install && yarn add @mengkodingan/ckptw
21
  # Copy any local custom files (if applicable, e.g., your bot code)
22
  # Uncomment this line if you have local modifications to include
23
+ COPY . .
24
 
25
  # Expose any necessary ports (optional, adjust if your bot uses a specific port)
26
  # EXPOSE 3000