Latest Docker update to transformers-pytorch-gpu causing failure

I have been using in my Docker file this image for quite awhile
FROM huggingface/transformers-pytorch-gpu:latest

When I pushed my updates today to Azure container it’s now failing. I am seeing this now in the logs which wasn’t there before.

crypto/fips/fips.c:154: OpenSSL internal error: FATAL FIPS SELFTEST FAILURE

I looked at the image source and it’s been updated about 11 hours ago. What changed? Why is it causing the failure?

1 Like

So, this latest version is problematic.

Downgrading works for me:

FROM huggingface/transformers-pytorch-gpu:4.41.3
1 Like