I am trying to build a docker image, but while insstalling the tensorflow, it shows the following error:
#9 2.293 ERROR: Could not find a version that satisfies the requirement tensorflow_cpu==2.3.1 (from versions: none) #9 2.293 ERROR: No matching distribution found for tensorflow_cpu==2.3.1
My Dockerfile contains
FROM python:3.8.8-alpine
WORKDIR /Cropwayy-Project
ADD . /Cropwayy-Project
RUN pip3 install --upgrade pip
RUN pip3 install -r requirements.txt
CMD ["python","app.py"]