From db6781826cf33aa8a57cdebdfa7c82802db8cd4f Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Tue, 17 Nov 2020 21:44:00 +0100 Subject: [PATCH] [Etherpad] Fix comment being included in environment variable --- pica-etherpad/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pica-etherpad/Dockerfile b/pica-etherpad/Dockerfile index 78bdbd77..a1260833 100644 --- a/pica-etherpad/Dockerfile +++ b/pica-etherpad/Dockerfile @@ -104,5 +104,6 @@ USER etherpad EXPOSE 8080 HEALTHCHECK --interval=20s --timeout=3s CMD curl --fail http://localhost:8080 || exit 1 WORKDIR /opt/etherpad-lite/ -ENV ABIWORD "/usr/bin/abiword" #installed here by debian +# Installed here by debian +ENV ABIWORD "/usr/bin/abiword" ENTRYPOINT ["/opt/etherpad-lite/entrypoint.sh", "/opt/etherpad-lite/bin/run.sh" ] -- GitLab