Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3768429
Dockerfile
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1011 B
Referenced Files
None
Subscribers
None
Dockerfile
View Options
#
# Docker image for Etherpad
#
FROM debian:bookworm
# Forked from Tony Motakis <tvelocity@gmail.com>
MAINTAINER Sébastien Santoro aka Dereckson <dereckson+nasqueron-docker@espace-win.org>
ENV NODE_ENV=production
RUN apt update && \
apt install -y curl unzip mariadb-client git sudo libssl-dev pkg-config build-essential abiword && \
curl -sL https://deb.nodesource.com/setup_18.x | bash && \
apt install -y nodejs && \
rm -r /var/lib/apt/lists/*
RUN cd /opt && \
git clone https://github.com/ether/etherpad-lite && \
useradd --uid 9001 --create-home etherpad && \
chown -R etherpad:0 /opt/etherpad-lite && \
npm install npm@6 -g
WORKDIR /opt/etherpad-lite
USER etherpad
RUN src/bin/installDeps.sh && \
rm -rf ~/.npm && \
rm settings.json
USER root
RUN cd src && npm link
USER etherpad
VOLUME /opt/etherpad-lite/var
RUN ln -s /opt/etherpad-lite/var/settings.json /opt/etherpad-lite/settings.json
EXPOSE 9001
ENTRYPOINT ["/entrypoint.sh"]
CMD ["etherpad"]
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 07:52 (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2256453
Default Alt Text
Dockerfile (1011 B)
Attached To
Mode
rDETHER Docker image for Etherpad
Attached
Detach File
Event Timeline
Log In to Comment