From c0db09f5f2c5806b0434e587e10367ca45ccf1ac Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Sat, 26 Sep 2020 16:09:47 +0100 Subject: [PATCH] etherpad: fix ln -s --- images/etherpad/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/etherpad/Dockerfile b/images/etherpad/Dockerfile index 0a6897d..196d94f 100644 --- a/images/etherpad/Dockerfile +++ b/images/etherpad/Dockerfile @@ -10,7 +10,7 @@ RUN mkdir -p /srv && git clone --branch master https://github.com/ether/etherpad ENV PYTHON /usr/bin/python3 RUN cd /srv/etherpad \ - && ln -s /usr/bin/python /usr/bin/python3 \ + && ln -s /usr/bin/python3 /usr/bin/python \ && npm install \ && npm install sqlite3 \ && rm /srv/etherpad/settings.json \