Hi, I am simply standing up a Postgres database with this package installed in it. This is the entire Dockerfile I am using:
``` FROM postgres:16 AS postgres-env RUN apt-get update && \ apt-get install -yq postgresql-16-rdkit && \ apt-get clean ``` I get the same results when building it fresh today: `InChI not available` Thanks.

