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
|
|
|
|
|
2023-06-27 22:17:55 +02:00
|
|
|
FROM node:lts-alpine
|
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=
|
2023-06-27 22:17:55 +02:00
|
|
|
|
2022-03-12 22:48:42 +01:00
|
|
|
RUN \
|
|
|
|
[ -z "${TIMEZONE}" ] || { \
|
2023-06-27 22:17:55 +02:00
|
|
|
apk add --no-cache tzdata && \
|
|
|
|
cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime && \
|
|
|
|
echo "${TIMEZONE}" > /etc/timezone; \
|
2022-03-12 22:48:42 +01:00
|
|
|
}
|
2023-06-27 22:17:55 +02:00
|
|
|
ENV TIMEZONE=${TIMEZONE}
|
2022-03-12 22:48:42 +01:00
|
|
|
|
2023-09-23 11:46:14 +02:00
|
|
|
# Control the configuration file to be copied into the container.
|
|
|
|
ARG SETTINGS=./settings.json.docker
|
|
|
|
|
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
|
2023-07-01 19:23:17 +02:00
|
|
|
ENV ETHERPAD_PRODUCTION=true
|
2023-06-27 22:17:55 +02:00
|
|
|
# Install dependencies required for modifying access.
|
2023-07-01 19:43:30 +02:00
|
|
|
RUN apk add shadow bash
|
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=
|
2023-06-27 22:17:55 +02:00
|
|
|
|
2023-07-01 19:23:17 +02:00
|
|
|
ENV NODE_ENV=production
|
2023-06-27 22:17:55 +02:00
|
|
|
|
2020-05-16 19:34:57 +02:00
|
|
|
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
|
2023-06-27 22:17:55 +02:00
|
|
|
RUN \
|
2021-06-18 03:18:25 +02:00
|
|
|
mkdir -p /usr/share/man/man1 && \
|
2023-06-27 22:17:55 +02:00
|
|
|
apk update && apk upgrade && \
|
|
|
|
apk add \
|
2021-06-18 02:58:13 +02:00
|
|
|
ca-certificates \
|
|
|
|
git \
|
2023-09-04 18:55:21 +02:00
|
|
|
${INSTALL_ABIWORD:+abiword abiword-plugin-command} \
|
2023-06-27 22:17:55 +02:00
|
|
|
${INSTALL_SOFFICE:+libreoffice openjdk8-jre libreoffice-common}
|
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
|
|
|
|
2023-07-05 20:48:58 +02:00
|
|
|
RUN npm config set prefix "${EP_DIR}/.npm-packages"
|
|
|
|
|
|
|
|
RUN ./src/bin/installDeps.sh
|
|
|
|
|
2021-06-18 02:56:34 +02:00
|
|
|
RUN { [ -z "${ETHERPAD_PLUGINS}" ] || \
|
2023-07-05 20:48:58 +02:00
|
|
|
npm install ${ETHERPAD_PLUGINS}; } && \
|
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.
|
2023-09-23 11:46:14 +02:00
|
|
|
COPY --chown=etherpad:etherpad ${SETTINGS} "${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 etherpad
|
|
|
|
|
2023-07-05 20:48:58 +02:00
|
|
|
HEALTHCHECK --interval=20s --timeout=3s CMD ["./src/bin/etherpad-healthcheck"]
|
2021-07-19 23:00:15 +02:00
|
|
|
|
2019-03-08 01:38:36 +01:00
|
|
|
EXPOSE 9001
|
2023-07-05 20:48:58 +02:00
|
|
|
CMD ["./src/node/server.js"]
|