ahmetalper commited on
Commit
8e9ee7d
1 Parent(s): 1281a0c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -6,7 +6,10 @@ 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
  COPY . .
12
 
 
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 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
12
+ RUN apt install -y ./google-chrome-stable_current_amd64.deb
13
 
14
  COPY . .
15