Yuuki0125 commited on
Commit
f8aa852
·
verified ·
1 Parent(s): 12ea8dc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -4,6 +4,14 @@ WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
 
 
 
 
 
 
 
 
7
  RUN pip install -U g4f[all]
8
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN apt-get update
8
+
9
+ RUN apt-get install -y wget
10
+
11
+ RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
12
+
13
+ RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
14
+
15
  RUN pip install -U g4f[all]
16
 
17
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt