diff --git a/pica-etherpad/Dockerfile b/pica-etherpad/Dockerfile
index b032e60715355d3c48ec883a1b8c71a6243d9f3b..8b456b2df2f6e90bd5c18579aa853872cbc8adf2 100644
--- a/pica-etherpad/Dockerfile
+++ b/pica-etherpad/Dockerfile
@@ -71,7 +71,6 @@ 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/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 27bedba1e17c67f2312739a27deff6ca8e5a6b99..7faa9ae07958e4f061ce39a0b31b064f69e6ff5f 100644
--- a/pica-etherpad/entrypoint.sh
+++ b/pica-etherpad/entrypoint.sh
@@ -88,7 +88,6 @@ cat <<- EOF > /opt/etherpad-lite/settings.json
   "skinName": "${ETHERPAD_THEME}",
   "defaultPadText": "${ETHERPAD_DEFAULT_TEXT}",
   "abiword": "/usr/bin/abiword",
-  "favicon": "favicon.ico",
   "padOptions": {
 	"lang": "fr",
 	"userName": "Anonyme",
@@ -116,6 +115,4 @@ cat <<- EOF >> /opt/etherpad-lite/settings.json
 }
 EOF
 
-cp /opt/etherpad-lite/favicon.ico /opt/etherpad-lite/src/static/favicon.ico
-
 exec "$@"
diff --git a/pica-etherpad/img/favicon.ico b/pica-etherpad/img/favicon.ico
deleted file mode 100644
index acd0a0794367abfa5b7a7c1f6009d262866b96e8..0000000000000000000000000000000000000000
Binary files a/pica-etherpad/img/favicon.ico and /dev/null differ