Duongkum999 commited on
Commit
23550da
1 Parent(s): 7ce09b8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -56,7 +56,9 @@ COPY . .
56
 
57
  # Cài đặt các phụ thuộc
58
  RUN npm install
59
- RUN npx puppeteer browsers install chrome
 
 
60
  # Cấp quyền đọc/ghi cho thư mục
61
  RUN chmod -R 755 /app
62
 
 
56
 
57
  # Cài đặt các phụ thuộc
58
  RUN npm install
59
+ RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
60
+ apt-get install -y ./google-chrome-stable_current_amd64.deb && \
61
+ rm google-chrome-stable_current_amd64.deb
62
  # Cấp quyền đọc/ghi cho thư mục
63
  RUN chmod -R 755 /app
64