From fc5edac0fdb37284ec48b37e83582cd06c04e3e5 Mon Sep 17 00:00:00 2001 From: Scott Koranda Date: Tue, 25 Feb 2020 09:10:05 -0600 Subject: [PATCH] Update build for Shibboleth SP base image Updated the build for the Shibboleth SP base image to use debian:buster as the base and the appropriate development libraries for that base. --- comanage-registry-shibboleth-sp-base/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comanage-registry-shibboleth-sp-base/Dockerfile b/comanage-registry-shibboleth-sp-base/Dockerfile index c7a9f41..f30aea1 100644 --- a/comanage-registry-shibboleth-sp-base/Dockerfile +++ b/comanage-registry-shibboleth-sp-base/Dockerfile @@ -16,7 +16,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM debian:stretch +FROM debian:buster RUN apt-get update \ && apt-get install -y --no-install-recommends \ @@ -27,8 +27,8 @@ RUN apt-get update \ g++ \ libboost-dev \ libcurl4-openssl-dev \ - libssl1.0-dev \ - libssl1.0.2 \ + libssl-dev \ + libssl1.1 \ make \ pkg-config \ wget \