Skip to content

Commit 3cc77de

Browse files
committed
adding gcloud cli dep
1 parent d1c2edc commit 3cc77de

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@ RUN apt-get update -y && \
1111
libfreetype6-dev \
1212
vim \
1313
wget \
14+
curl \
15+
procps \
1416
zip \
1517
libglib2.0-0 \
1618
libnss3 \
1719
libgconf-2-4 \
20+
curl \
21+
gnupg \
1822
libfontconfig1
1923

24+
RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
25+
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
26+
RUN apt-get update -y && apt-get install google-cloud-cli -y
27+
2028
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2129
RUN apt install -y ./google-chrome-stable_current_amd64.deb
2230

@@ -27,3 +35,4 @@ RUN apt-get install -y zip
2735

2836
RUN unzip chromedriver_linux64.zip
2937
RUN mv chromedriver /usr/local/bin/chromedriver
38+

0 commit comments

Comments
 (0)