πΊπΈUnited States Gastonia
A head's up that this isn't just a MacOs issue. It's happening in all our linux based custom docker images where GNU patch isn't installed.
The solution is to of course install it
ex:
apt-get install patch -y
# inside Dockerfile
RUN apt-get install patch -y