From f7345b618aab82df6d96e257545b53527cac77c4 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Sun, 15 Oct 2023 22:36:45 +0800 Subject: [PATCH] ENH: update libssl to 3.0 github-issue: docker build failed Change-Id: Ic29740791b4fdb6b065c31dad79112f74c92de17 --- Containerfile | 4 ++-- Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Containerfile b/Containerfile index 01d658f99..62f68463a 100644 --- a/Containerfile +++ b/Containerfile @@ -18,7 +18,7 @@ # # TODO: bind mount BambuStudio to inside the container instead of COPY to enable faster rebuilds during dev work. -FROM docker.io/ubuntu:20.04 +FROM docker.io/ubuntu:22.04 LABEL maintainer "DeftDawg " ARG BUILD_LINUX_EXTRA_ARGS="" @@ -46,7 +46,7 @@ RUN apt-get update && apt-get install -y \ libgstreamer1.0-dev libgstreamer-plugins-good1.0-dev libgstreamer-plugins-base1.0-dev libgstreamerd-3-dev \ libmspack-dev \ libosmesa6-dev \ - libssl-dev libcurl4-openssl-dev libsecret-1-dev \ + libssl3 libssl-dev libcurl4-openssl-dev libsecret-1-dev \ libudev-dev \ curl \ wget \ diff --git a/Dockerfile b/Dockerfile index ed14e9a71..3e43313eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/ubuntu:20.04 +FROM docker.io/ubuntu:22.04 LABEL maintainer "DeftDawg " # Disable interactive package configuration @@ -36,6 +36,7 @@ RUN apt-get update && apt-get install -y \ libosmesa6-dev \ libsecret-1-dev \ libsoup2.4-dev \ + libssl3 \ libssl-dev \ libudev-dev \ libwayland-dev \