Skip to content

Commit

Permalink
fix: resolve error around the use of apt instead of apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
iennae authored Aug 22, 2024
1 parent 53aa8ed commit 0ecbba8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .kokoro/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
FROM gcr.io/cloud-devrel-kokoro-resources/python-base:latest

# Install libraries needed by third-party python packages that we depend on.
RUN apt update \
&& apt install -y \
RUN apt-get update \
&& apt-get install -y \
graphviz \
libcurl4-openssl-dev \
libffi-dev \
Expand All @@ -31,7 +31,7 @@ RUN apt update \
libxslt1-dev \
openssl \
zlib1g-dev \
&& apt clean
&& apt-get clean


###################### Check python version
Expand Down

0 comments on commit 0ecbba8

Please sign in to comment.