Using "--inserts" option with dump.sh skips anonymization
If the "--inserts" option is used with dump.sh, no anonymization is done. Example command:
cat dump.sql rules.sql | docker run --rm -i registry.gitlab.com/dalibo/postgresql_anonymizer /dump.sh --inserts > anon_dump.sql
Probably this is because pg_dump will use a Cursor instead of the COPY command when "--inserts" is specified.