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
|
|
|
|
|
2020-06-07 22:36:52 +02:00
|
|
|
FROM node:10-buster-slim
|
2019-03-08 01:38:36 +01:00
|
|
|
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
|
|
|
|
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=
|
|
|
|
|
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.
|
|
|
|
RUN useradd --uid 5001 --create-home etherpad
|
|
|
|
|
2020-03-27 06:45:55 +01:00
|
|
|
RUN mkdir /opt/etherpad-lite && chown etherpad:0 /opt/etherpad-lite
|
2019-12-01 15:08:20 +01:00
|
|
|
|
2020-03-27 06:45:55 +01:00
|
|
|
USER etherpad
|
2019-12-01 15:08:20 +01:00
|
|
|
|
2019-07-12 02:03:25 +02:00
|
|
|
WORKDIR /opt/etherpad-lite
|
|
|
|
|
2020-03-27 06:45:55 +01:00
|
|
|
COPY --chown=etherpad:0 ./ ./
|
2019-11-08 22:56:30 +01:00
|
|
|
|
2019-03-08 01:38:36 +01:00
|
|
|
# install node dependencies for Etherpad
|
2019-10-06 22:35:33 +02:00
|
|
|
RUN bin/installDeps.sh && \
|
|
|
|
rm -rf ~/.npm/_cacache
|
2019-03-08 01:38:36 +01:00
|
|
|
|
2019-07-12 02:32:34 +02:00
|
|
|
# Install the plugins, if ETHERPAD_PLUGINS is not empty.
|
|
|
|
#
|
|
|
|
# Bash trick: in the for loop ${ETHERPAD_PLUGINS} is NOT quoted, in order to be
|
|
|
|
# able to split at spaces.
|
2020-06-01 21:16:08 +02:00
|
|
|
RUN for PLUGIN_NAME in ${ETHERPAD_PLUGINS}; do npm install "${PLUGIN_NAME}" || exit 1; done
|
2019-07-12 02:32:34 +02:00
|
|
|
|
2019-10-24 11:09:30 +02:00
|
|
|
# Copy the configuration file.
|
2020-03-27 06:45:55 +01:00
|
|
|
COPY --chown=etherpad:0 ./settings.json.docker /opt/etherpad-lite/settings.json
|
|
|
|
|
|
|
|
# Fix permissions for root group
|
|
|
|
RUN chmod -R g=u .
|
2019-09-30 10:07:14 +02:00
|
|
|
|
2019-03-08 01:38:36 +01:00
|
|
|
EXPOSE 9001
|
2020-10-06 14:28:11 +02:00
|
|
|
CMD ["node", "--experimental-worker", "node_modules/ep_etherpad-lite/node/server.js"]
|