diff --git a/docker/Dockerfile b/docker/Dockerfile index 9bd1866..a422c93 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -52,6 +52,7 @@ RUN apt-get update && \ libqt5widgets5 \ libqt5qml5 \ libssl3 \ + libssl-dev \ lsof \ sqlite3 \ tigervnc-standalone-server \ @@ -64,11 +65,6 @@ RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -# Fix for OpenSSL 3 crypto library linkage on linux/amd64 (status of other platforms unknown) -# (pairing w/ install code will not work otherwise and no errors regarding load library failures are logged) -RUN if [ "${TARGETPLATFORM}" = "linux/amd64" ] ; then \ - cd /usr/lib/x86_64-linux-gnu && ln -s libcrypto.so.3 libcrypto.so ; fi - # Workaround required on amd64 to address issue #292 RUN if [ "${TARGETPLATFORM}" = "linux/amd64" ] ; then \ apt-get update && \