ahmetalper commited on
Commit
8579734
1 Parent(s): 23845a7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -5
Dockerfile CHANGED
@@ -6,12 +6,14 @@ COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
- RUN mkdir downloaded_files && chmod 777 downloaded_files
10
 
11
- RUN apt-get update
12
- RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
13
- RUN wget https://storage.googleapis.com/chrome-for-testing-public/124.0.6367.91/linux64/chromedriver-linux64.zip
14
- RUN apt install -y ./google-chrome-stable_current_amd64.deb
 
 
15
 
16
  COPY . .
17
 
 
6
 
7
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
+ # RUN mkdir downloaded_files && chmod 777 downloaded_files
10
 
11
+ # RUN apt-get update
12
+ # RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
13
+ # RUN wget https://storage.googleapis.com/chrome-for-testing-public/124.0.6367.91/linux64/chromedriver-linux64.zip
14
+ # RUN apt install -y ./google-chrome-stable_current_amd64.deb
15
+
16
+ RUN seleniumbase get chromedriver
17
 
18
  COPY . .
19