Skip to content

Commit 93c1a0b

Browse files
committed
Add comment
1 parent 65f3c28 commit 93c1a0b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.generator/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,10 @@ FROM marketplace.gcr.io/google/ubuntu2404
8282
# These are the non "-dev" versions of the libraries used in the builder.
8383
RUN apt-get update && \
8484
apt-get install -y --no-install-recommends \
85+
# This is needed to avoid the following error:
86+
# `ImportError: libsqlite3.so.0: cannot open shared object file: No such file or directory`.
87+
# `libsqlite3-0` is used by the `coverage` PyPI package which is used when testing libraries
8588
libsqlite3-0 \
86-
wget \
87-
zip \
8889
&& apt-get clean autoclean \
8990
&& apt-get autoremove -y \
9091
&& rm -rf /var/lib/apt/lists/* \

0 commit comments

Comments
 (0)