Hi Team,
I am trying to upgrade the couchbase version from enterprise-6.0.3 to 6.6.1 version, but the problem when I am trying to build the image it says python not found, the same thing works fine in 6.0.3 version.
below is my dockerfile.
FROM couchbase:enterprise-6.6.1
WORKDIR /usr/scripts/
COPY py-scripts/* ./
RUN curl -O https://bootstrap.pypa.io/get-pip.py
&& python get-pip.py
&& pip install awscli
&& pip install --upgrade rsa
&& pip install requests \
Please suggest me why it says python not found and how can I resolve the same.