Spaces:
Building
Building
Update Dockerfile
Browse files- 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 |
-
|
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
|