GID check in Docker executor uses wrong method
This line here is supposed to get the GID of the user context of build container. But there is a typo. Instead of inspect.UID(s.Context, s.buildContainer.ID)
it should use inspect.GID(s.Context, s.buildContainer.ID)
.