diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-01-11 22:52:51 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-01-11 22:52:51 +0100 |
commit | bbeba25a398a8a473f572819966c1c82a6429548 (patch) | |
tree | 91761c5fa5c555a7d46d1e0979f2d1f0cc455e96 /Dockerfile | |
parent | 321e3bc5a0e8b849b94c1389a23c4400f95bbf10 (diff) |
Dockerfile: fix version pass-through
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ 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 |