Bootstrap 4 Dropdown - align dropdown caret right

I know this is a very late reply, but I did it using this simple CSS below:

.dropdown-toggle::after {
   float:right;
}

You can also add to the above margin-right and margin-top if you need to pad it away from the edge of the container it’s in, so I used margin-right:10% when I used it but the world is your oyster.