salmanmapkar commited on
Commit
27ce41e
·
1 Parent(s): f77f3eb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -1,6 +1,10 @@
1
  FROM python:3.9
2
 
3
  WORKDIR /code
 
 
 
 
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
 
1
  FROM python:3.9
2
 
3
  WORKDIR /code
4
+ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
5
+ RUN sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
6
+ RUN sudo apt-get update
7
+ RUN sudo apt-get install google-chrome-stable
8
 
9
  COPY ./requirements.txt /code/requirements.txt
10