mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Docker: Install git
and ca-certificates
packages
This makes it possible to install plugins from Git repositories.
This commit is contained in:
parent
2a367f6171
commit
2e2cb38225
1 changed files with 3 additions and 2 deletions
|
@ -57,11 +57,12 @@ RUN mkdir -p "${EP_DIR}" && chown etherpad:etherpad "${EP_DIR}"
|
||||||
|
|
||||||
# the mkdir is needed for configuration of openjdk-11-jre-headless, see
|
# the mkdir is needed for configuration of openjdk-11-jre-headless, see
|
||||||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
||||||
RUN [ -n "${INSTALL_ABIWORD}${INSTALL_SOFFICE}" ] || exit 0; \
|
RUN export DEBIAN_FRONTEND=noninteractive; \
|
||||||
export DEBIAN_FRONTEND=noninteractive; \
|
|
||||||
mkdir -p /usr/share/man/man1 && \
|
mkdir -p /usr/share/man/man1 && \
|
||||||
apt-get -qq update && \
|
apt-get -qq update && \
|
||||||
apt-get -qq --no-install-recommends install \
|
apt-get -qq --no-install-recommends install \
|
||||||
|
ca-certificates \
|
||||||
|
git \
|
||||||
${INSTALL_ABIWORD:+abiword} \
|
${INSTALL_ABIWORD:+abiword} \
|
||||||
${INSTALL_SOFFICE:+libreoffice} \
|
${INSTALL_SOFFICE:+libreoffice} \
|
||||||
&& \
|
&& \
|
||||||
|
|
Loading…
Reference in a new issue