2019-03-08 01:38:36 +01:00
|
|
|
# Etherpad Lite Dockerfile
|
|
|
|
#
|
2019-11-08 23:15:03 +01:00
|
|
|
# https://github.com/ether/etherpad-lite
|
2019-03-08 01:38:36 +01:00
|
|
|
#
|
|
|
|
# Author: muxator
|
|
|
|
|
2021-11-08 17:40:34 +01:00
|
|
|
FROM node:lts-slim
|
2019-03-08 01:38:36 +01:00
|
|
|
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
|
|
|
|
2022-03-12 22:48:42 +01:00
|
|
|
ARG TIMEZONE=
|
|
|
|
RUN \
|
|
|
|
[ -z "${TIMEZONE}" ] || { \
|
|
|
|
ln -sf /usr/share/zoneinfo/"${TIMEZONE#/usr/share/zoneinfo/}" /etc/localtime; \
|
|
|
|
dpkg-reconfigure -f noninteractive tzdata; \
|
|
|
|
}
|
|
|
|
|
2019-07-12 02:32:34 +02:00
|
|
|
# plugins to install while building the container. By default no plugins are
|
|
|
|
# installed.
|
|
|
|
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
|
|
|
#
|
|
|
|
# EXAMPLE:
|
|
|
|
# ETHERPAD_PLUGINS="ep_codepad ep_author_neat"
|
|
|
|
ARG ETHERPAD_PLUGINS=
|
|
|
|
|
2021-02-18 10:27:52 +01:00
|
|
|
# Control whether abiword will be installed, enabling exports to DOC/PDF/ODT formats.
|
|
|
|
# By default, it is not installed.
|
|
|
|
# If given any value, abiword will be installed.
|
|
|
|
#
|
|
|
|
# EXAMPLE:
|
|
|
|
# INSTALL_ABIWORD=true
|
|
|
|
ARG INSTALL_ABIWORD=
|
|
|
|
|
|
|
|
# Control whether libreoffice will be installed, enabling exports to DOC/PDF/ODT formats.
|
|
|
|
# By default, it is not installed.
|
|
|
|
# If given any value, libreoffice will be installed.
|
|
|
|
#
|
|
|
|
# EXAMPLE:
|
|
|
|
# INSTALL_LIBREOFFICE=true
|
|
|
|
ARG INSTALL_SOFFICE=
|
|
|
|
|
2020-04-19 04:35:27 +02:00
|
|
|
# By default, Etherpad container is built and run in "production" mode. This is
|
|
|
|
# leaner (development dependencies are not installed) and runs faster (among
|
|
|
|
# other things, assets are minified & compressed).
|
|
|
|
ENV NODE_ENV=production
|
2019-03-29 10:28:56 +01:00
|
|
|
|
2019-12-01 15:08:20 +01:00
|
|
|
# Follow the principle of least privilege: run as unprivileged user.
|
|
|
|
#
|
|
|
|
# Running as non-root enables running this image in platforms like OpenShift
|
|
|
|
# that do not allow images running as root.
|
2020-05-16 19:34:57 +02:00
|
|
|
#
|
|
|
|
# If any of the following args are set to the empty string, default
|
|
|
|
# values will be chosen.
|
|
|
|
ARG EP_HOME=
|
|
|
|
ARG EP_UID=5001
|
|
|
|
ARG EP_GID=0
|
|
|
|
ARG EP_SHELL=
|
|
|
|
RUN groupadd --system ${EP_GID:+--gid "${EP_GID}" --non-unique} etherpad && \
|
|
|
|
useradd --system ${EP_UID:+--uid "${EP_UID}" --non-unique} --gid etherpad \
|
|
|
|
${EP_HOME:+--home-dir "${EP_HOME}"} --create-home \
|
|
|
|
${EP_SHELL:+--shell "${EP_SHELL}"} etherpad
|
|
|
|
|
2020-05-16 19:48:27 +02:00
|
|
|
ARG EP_DIR=/opt/etherpad-lite
|
|
|
|
RUN mkdir -p "${EP_DIR}" && chown etherpad:etherpad "${EP_DIR}"
|
2019-12-01 15:08:20 +01:00
|
|
|
|
2021-06-18 03:18:25 +02:00
|
|
|
# the mkdir is needed for configuration of openjdk-11-jre-headless, see
|
|
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
2021-06-18 02:58:13 +02:00
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive; \
|
2021-06-18 03:18:25 +02:00
|
|
|
mkdir -p /usr/share/man/man1 && \
|
2021-06-18 03:05:49 +02:00
|
|
|
apt-get -qq update && \
|
2021-11-28 08:24:52 +01:00
|
|
|
apt-get -qq dist-upgrade && \
|
2021-06-18 03:16:01 +02:00
|
|
|
apt-get -qq --no-install-recommends install \
|
2021-06-18 02:58:13 +02:00
|
|
|
ca-certificates \
|
|
|
|
git \
|
2021-06-18 03:18:25 +02:00
|
|
|
${INSTALL_ABIWORD:+abiword} \
|
|
|
|
${INSTALL_SOFFICE:+libreoffice} \
|
|
|
|
&& \
|
2021-06-18 03:05:49 +02:00
|
|
|
apt-get -qq clean && \
|
2021-06-18 03:18:25 +02:00
|
|
|
rm -rf /var/lib/apt/lists/*
|
2021-02-18 10:27:52 +01:00
|
|
|
|
2020-03-27 06:45:55 +01:00
|
|
|
USER etherpad
|
2019-12-01 15:08:20 +01:00
|
|
|
|
2020-05-16 19:48:27 +02:00
|
|
|
WORKDIR "${EP_DIR}"
|
2019-07-12 02:03:25 +02:00
|
|
|
|
2020-05-16 19:34:57 +02:00
|
|
|
COPY --chown=etherpad:etherpad ./ ./
|
2019-11-08 22:56:30 +01:00
|
|
|
|
2021-06-18 02:56:34 +02:00
|
|
|
# Plugins must be installed before installing Etherpad's dependencies, otherwise
|
|
|
|
# npm will try to hoist common dependencies by removing them from
|
|
|
|
# src/node_modules and installing them in the top-level node_modules. As of
|
|
|
|
# v6.14.10, npm's hoist logic appears to be buggy, because it sometimes removes
|
|
|
|
# dependencies from src/node_modules but fails to add them to the top-level
|
|
|
|
# node_modules. Even if npm correctly hoists the dependencies, the hoisting
|
|
|
|
# seems to confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
|
|
# rules.
|
|
|
|
RUN { [ -z "${ETHERPAD_PLUGINS}" ] || \
|
2021-11-08 17:40:34 +01:00
|
|
|
npm install --no-save --legacy-peer-deps ${ETHERPAD_PLUGINS}; } && \
|
2021-06-18 02:56:34 +02:00
|
|
|
src/bin/installDeps.sh && \
|
2021-06-18 02:51:42 +02:00
|
|
|
rm -rf ~/.npm
|
2019-07-12 02:32:34 +02:00
|
|
|
|
2019-10-24 11:09:30 +02:00
|
|
|
# Copy the configuration file.
|
2020-05-16 19:48:27 +02:00
|
|
|
COPY --chown=etherpad:etherpad ./settings.json.docker "${EP_DIR}"/settings.json
|
2020-03-27 06:45:55 +01:00
|
|
|
|
2020-05-16 19:34:57 +02:00
|
|
|
# Fix group permissions
|
2020-03-27 06:45:55 +01:00
|
|
|
RUN chmod -R g=u .
|
2019-09-30 10:07:14 +02:00
|
|
|
|
2021-12-21 07:08:14 +01:00
|
|
|
USER root
|
|
|
|
RUN cd src && npm link
|
|
|
|
USER etherpad
|
|
|
|
|
2021-12-21 07:14:44 +01:00
|
|
|
HEALTHCHECK --interval=20s --timeout=3s CMD ["etherpad-healthcheck"]
|
2021-07-19 23:00:15 +02:00
|
|
|
|
2019-03-08 01:38:36 +01:00
|
|
|
EXPOSE 9001
|
2021-12-21 07:08:14 +01:00
|
|
|
CMD ["etherpad"]
|