From 0f42f37ee17958e36f349192a7214d31bc37cda1 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 17 Mar 2021 03:10:17 +0000 Subject: [PATCH] etherpad: install stuff to install sqlite3 in the main docker container directly.... ugh. --- images/etherpad/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/etherpad/Dockerfile b/images/etherpad/Dockerfile index f491cbc..65f07e5 100644 --- a/images/etherpad/Dockerfile +++ b/images/etherpad/Dockerfile @@ -7,7 +7,7 @@ FROM ${REPO_LOCATION}minideb-node AS builder # It's important we checkout a specific commit, otherwise etherpad checks out the latest from develop O.o ARG COMMIT=b99c2cae22f35a0c0831e2fef0719f115b486bd9 -RUN install_packages git ca-certificates python3 make gcc g++ libc-dev libc++-dev +RUN install_packages git ca-certificates RUN mkdir -p /srv \ && git clone --branch master https://github.com/ether/etherpad-lite.git /srv/etherpad \ @@ -24,6 +24,7 @@ ENV PYTHON /usr/bin/python3 RUN mkdir -p /.npm && chown -R 70:70 /.npm /srv/etherpad RUN cd /srv/etherpad \ + && install_packages python3 make gcc g++ libc-dev libc++-dev \ && ln -s /usr/bin/python3 /usr/bin/python \ && src/bin/installDeps.sh \ && npm install sqlite3 \