Not able to install couchbase using .deb files

I ran into a weird issue today.
I have my project containerized in docker.
I am using couch-base as a DB and I install couch-base using deb files. as per the couch documentation and this is how my docker files looks:

FROM debian:jessie-slim
RUN apt-get update --fix-missing && apt-get install -y wget bzip2 ca-
certificates
libglib2.0-0 libxext6 libsm6 libxrender1
FROM python:3
ADD . /app
WORKDIR /app
RUN apt-get -y install curl &&
apt-get -y install lsb-core &&
apt-get -y install lsb
RUN wget http://packages.couchbase.com/releases/couchbase-release/couchbase-release-1.0-6-amd64.deb
RUN dpkg -i couchbase-release-1.0-6-amd64.deb
RUN apt-get install libcouchbase-dev libcouchbase2-bin build-essential -y

As the lsb-relase, lsb core packages were missing the couch-base deb file installation is failing.
Is there any alternative and better way to install couchbase python client .

Thanks

Hi @sumanth016

Can you point me to the documentation you’re following? The docs I found to install Couchbase server on debian don’t mention lsb or lsb-core (Install Couchbase Server on Ubuntu and Debian | Couchbase Docs).

Trying to install couchabse python client, in my docker container.

https://docs.couchbase.com/c-sdk/2.10/sdk-release-notes.html

Thanks