cuddly-motorcycle-31750
04/05/2023, 5:40 AMThe TensorFlow library was compiled to use AVX instructions, but these aren't available on your machine.
The Dockerfile goes like this:
FROM tensorflow/tensorflow:1.15.2 as warmup
WORKDIR /tmp
RUN pip install tensorflow-serving-api==1.15.0
According to this site, the promising solution seems to be
You can compile a Tensorflow from the source that does not use the AVX instruction set. Or find an already compiled one on the internet.
Would anyone help edit the current Dockerfile so that it compiles a Tensorflow from the source that does not use the AVX instruction set OR use an already compiled one on the Internet?