I'm using docker with python,when I need install some specific version of apps I docker remains me:
=> ERROR [3/3] RUN pip install cx-Oracle == 7.0.0 pandas == 1.1.2
my code in Dockerfile:
# Dockerfile, Image, Container
From python:3.7.9
ADD main.py .
Run pip install cx-Oracle == 7.0.0 pandas == 1.1.2
CMD ["python","./main.py"]