bito-code-review[bot] commented on PR #43182:
URL: https://github.com/apache/superset/pull/43182#issuecomment-5297493705

   <!-- Bito Reply -->
   The flagged issue is correct. The package `libldap2` is not available in 
Debian trixie; the correct runtime package is `libldap-2.6-0`. Using the 
incorrect name causes the `apt-get install` command to fail, blocking the build.
   
   To resolve this, update the `Dockerfile` to use the correct package name for 
the Debian release being used. If you are targeting Debian trixie, replace 
`libldap2` with `libldap-2.6-0` in the `apt-install.sh` command.
   
   I have checked the available PR comments, and there are no other comments to 
address. Would you like me to implement this fix for you?
   
   **Dockerfile**
   ```
   RUN /app/docker/apt-install.sh \
         curl \
         libsasl2-2 \
         libsasl2-modules-gssapi-mit \
         libpq5 \
         libecpg6 \
         libldap-2.6-0
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to