etherpad: install stuff to install sqlite3 in the main docker container directly.... ugh.
This commit is contained in:
parent
b709b36864
commit
0f42f37ee1
1 changed files with 2 additions and 1 deletions
|
@ -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
|
# It's important we checkout a specific commit, otherwise etherpad checks out the latest from develop O.o
|
||||||
ARG COMMIT=b99c2cae22f35a0c0831e2fef0719f115b486bd9
|
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 \
|
RUN mkdir -p /srv \
|
||||||
&& git clone --branch master https://github.com/ether/etherpad-lite.git /srv/etherpad \
|
&& 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 mkdir -p /.npm && chown -R 70:70 /.npm /srv/etherpad
|
||||||
RUN cd /srv/etherpad \
|
RUN cd /srv/etherpad \
|
||||||
|
&& install_packages python3 make gcc g++ libc-dev libc++-dev \
|
||||||
&& ln -s /usr/bin/python3 /usr/bin/python \
|
&& ln -s /usr/bin/python3 /usr/bin/python \
|
||||||
&& src/bin/installDeps.sh \
|
&& src/bin/installDeps.sh \
|
||||||
&& npm install sqlite3 \
|
&& npm install sqlite3 \
|
||||||
|
|
Loading…
Reference in a new issue