salmanmapkar commited on
Commit
3ad8cbc
·
1 Parent(s): b1e2dad

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -2,10 +2,9 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
  RUN apt-get update && apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx && rm -rf /var/lib/apt/lists/* && git lfs install
5
- RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
6
- RUN sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
7
- RUN apt-get update
8
- RUN apt-get install google-chrome-stable
9
 
10
  COPY ./requirements.txt /code/requirements.txt
11
 
 
2
 
3
  WORKDIR /code
4
  RUN apt-get update && apt-get install -y git git-lfs ffmpeg libsm6 libxext6 cmake libgl1-mesa-glx && rm -rf /var/lib/apt/lists/* && git lfs install
5
+ RUN apt-get install -y gconf-service libasound2 libatk1.0-0 libcairo2 libcups2 libfontconfig1 libgdk-pixbuf2.0-0 libgtk-3-0 libnspr4 libpango-1.0-0 libxss1 fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils
6
+ RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
7
+ RUN dpkg -i google-chrome-stable_current_amd64.deb; apt-get -fy install
 
8
 
9
  COPY ./requirements.txt /code/requirements.txt
10