Update Dockerfile

This commit is contained in:
prabhatdev
2020-07-29 11:45:04 +05:30
committed by GitHub
parent 7458f650e8
commit dfefae8aec

View File

@@ -9,11 +9,8 @@ ADD loc.py /loc.py
ADD make_bar_graph.py /make_bar_graph.py
ADD colors.json /colors.json
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
RUN apt-get -y update
RUN apt-get install -y google-chrome-stable
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN sudo apt install ./google-chrome-stable_current_amd64.deb
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev \