Closed vaskokj closed 3 months ago
RUN apt-get update -y && apt-get install -y libssl-dev=1.1.1f-1ubuntu2.20 --no-install-recommends && rm -rf /var/lib/apt/lists/* during a build using docker build . will not build due to missing package.
RUN apt-get update -y && apt-get install -y libssl-dev=1.1.1f-1ubuntu2.20 --no-install-recommends && rm -rf /var/lib/apt/lists/*
docker build .
Need to use libssl-dev=1.1.1f-1ubuntu2.22
libssl-dev=1.1.1f-1ubuntu2.22
RUN apt-get update -y && apt-get install -y libssl-dev=1.1.1f-1ubuntu2.20 --no-install-recommends && rm -rf /var/lib/apt/lists/*
during a build usingdocker build .
will not build due to missing package.Need to use
libssl-dev=1.1.1f-1ubuntu2.22