We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65f3c28 commit 93c1a0bCopy full SHA for 93c1a0b
.generator/Dockerfile
@@ -82,9 +82,10 @@ FROM marketplace.gcr.io/google/ubuntu2404
82
# These are the non "-dev" versions of the libraries used in the builder.
83
RUN apt-get update && \
84
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
88
libsqlite3-0 \
- wget \
- zip \
89
&& apt-get clean autoclean \
90
&& apt-get autoremove -y \
91
&& rm -rf /var/lib/apt/lists/* \
0 commit comments