2021-03-27 18:48:05 +01:00
|
|
|
FROM etherpad/etherpad:1.8.13
|
2020-05-31 11:27:32 +02:00
|
|
|
|
|
|
|
USER root
|
|
|
|
|
|
|
|
RUN apt-get update \
|
2020-10-21 19:26:01 +02:00
|
|
|
&& apt-get install -y git
|
2020-05-31 11:27:32 +02:00
|
|
|
|
2020-10-21 19:26:01 +02:00
|
|
|
USER etherpad
|
2020-05-31 11:27:32 +02:00
|
|
|
|
2020-10-21 19:26:01 +02:00
|
|
|
RUN npm install \
|
2021-02-27 14:52:49 +01:00
|
|
|
git+https://git@github.com/pedrobmarin/ep_pad_ttl.git \
|
|
|
|
git+https://git@github.com/pedrobmarin/ep_redis_publisher.git \
|
2021-03-27 18:48:05 +01:00
|
|
|
git+https://git@github.com/ether/ep_disable_chat.git \
|
2021-04-10 11:34:11 +02:00
|
|
|
git+https://github.com/ether/ep_sticky_attributes.git \
|
2021-02-27 14:52:49 +01:00
|
|
|
# remove npm lockfile, because somehow it prevents etherpad from detecting the manual added plugin ep_bigbluebutton_patches
|
|
|
|
&& rm package-lock.json
|
2020-05-31 11:27:32 +02:00
|
|
|
|
2020-10-21 19:26:01 +02:00
|
|
|
# add skin from git submodule
|
|
|
|
COPY --chown=etherpad:0 ./bbb-etherpad-skin /opt/etherpad-lite/src/static/skins/bigbluebutton
|
|
|
|
|
|
|
|
# add plugin from git submodule
|
|
|
|
COPY --chown=etherpad:0 ./bbb-etherpad-plugin /opt/etherpad-lite/node_modules/ep_bigbluebutton_patches
|
|
|
|
|
|
|
|
COPY settings.json /opt/etherpad-lite/settings.json
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
2020-05-31 11:27:32 +02:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|