diff --git a/pica-etherpad/Dockerfile b/pica-etherpad/Dockerfile index 65abc9185d3254c4de02e52d2af61f852d9a4196..b032e60715355d3c48ec883a1b8c71a6243d9f3b 100644 --- a/pica-etherpad/Dockerfile +++ b/pica-etherpad/Dockerfile @@ -71,7 +71,7 @@ RUN curl -SL https://github.com/ether/etherpad-lite/archive/${ETHERPAD_VERSION}. FROM base COPY entrypoint.sh /opt/etherpad-lite/entrypoint.sh -COPY img/favicon.ico /opt/etherpad-lite/src/static/favicon.ico +COPY img/favicon.ico /opt/etherpad-lite/src/favicon.ico RUN apt-get update && \ apt-get install -y mysql-client abiword && \ chmod +x /opt/etherpad-lite/entrypoint.sh && \ diff --git a/pica-etherpad/entrypoint.sh b/pica-etherpad/entrypoint.sh index f419ff5cd8332affdc56963d83b4a26e5ad400db..27bedba1e17c67f2312739a27deff6ca8e5a6b99 100644 --- a/pica-etherpad/entrypoint.sh +++ b/pica-etherpad/entrypoint.sh @@ -92,8 +92,8 @@ cat <<- EOF > /opt/etherpad-lite/settings.json "padOptions": { "lang": "fr", "userName": "Anonyme", - "alwaysShowChat": true, - "chatAndUsers": true + "alwaysShowChat": false, + "chatAndUsers": false }, "allowUnknownFileEnds": false, EOF @@ -116,5 +116,6 @@ cat <<- EOF >> /opt/etherpad-lite/settings.json } EOF +cp /opt/etherpad-lite/favicon.ico /opt/etherpad-lite/src/static/favicon.ico exec "$@"