diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -# Copyright (C) 2020 Daniel Friesel +# Copyright (C) 2020 Birte Kristina Friesel # # SPDX-License-Identifier: CC0-1.0 @@ -19,9 +19,9 @@ WORKDIR /app RUN ln -sf ../ext-templates/imprint.html.ep templates/imprint.html.ep \ && ln -sf ../ext-templates/privacy.html.ep templates/privacy.html.ep -RUN sed -i "s/version => \$ENV{DBFAKEDISPLAY_VERSION}/version => '${dbf_version}'/" lib/DBInfoscreen.pm +RUN sed -i "s/version *=> *\$ENV{DBFAKEDISPLAY_VERSION}/version => '${dbf_version}'/" lib/DBInfoscreen.pm -FROM perl:5.30-slim +FROM perl:5.40-slim ARG DEBIAN_FRONTEND=noninteractive ARG APT_LISTCHANGES_FRONTEND=none @@ -37,7 +37,7 @@ RUN apt-get update \ libc6-dev \ libdb5.3 \ libdb5.3-dev \ - libssl1.1 \ + libssl3 \ libssl-dev \ libxml2 \ libxml2-dev \ |