I am new to Docker and learning how to creating an image in container but I am having this error ERROR [internal] load metadata for docker.io/library/python.alpine3.8.3:latest
Please someone help me to fix this error!
FROM python.alpine3.8
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD python
The above is the code of Dockerfile