diff --git a/images/etherpad/Dockerfile b/images/etherpad/Dockerfile index dfa0891..e16a4cc 100644 --- a/images/etherpad/Dockerfile +++ b/images/etherpad/Dockerfile @@ -12,14 +12,14 @@ ENV PYTHON /usr/bin/python3 RUN cd /srv/etherpad \ && ln -s /usr/bin/python3 /usr/bin/python \ && npm install \ - && npm install sqlite3 \ - && chown -R 70:70 /srv/etherpad + && npm install sqlite3 ############################################################################### FROM ${REPO_LOCATION}minideb-node -RUN mkdir -p /srv /.npm && chown -R 70:70 /.npm +RUN mkdir -p /srv /.npm \ + && chown -R 70:70 /.npm /srv/etherpad COPY --from=builder /srv/etherpad /srv/etherpad COPY settings.json /srv/etherpad/ USER 70:70