From 65e5563ac03099719bb5cc5a3b8df38a909c5890 Mon Sep 17 00:00:00 2001 From: Botond Hende Date: Mon, 22 Apr 2024 21:47:48 +0200 Subject: initial commit --- Dockerfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4afaa87 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +FROM docker.io/node:lts-alpine + +MAINTAINER Hende, Botond +LABEL Description="Etherpad-lite server" + +ENV NODE_ENV=production + +RUN apk add --no-cache --virtual container-buildtime \ + git python3 alpine-sdk + +RUN git clone --depth 1 --branch master --separate-git-dir=/tmp/etherpad https://github.com/ether/etherpad-lite /opt/etherpad +WORKDIR /opt/etherpad/src +RUN npm install sqlite3 +RUN bin/installDeps.sh +RUN npm audit fix || true +RUN chown -R node:node /opt/etherpad +RUN rm -rf /tmp/etherpad + +COPY settings.json /opt/etherpad/settings.json + +RUN apk del container-buildtime + +USER node +EXPOSE 9001/tcp + +CMD ["/opt/etherpad/src/bin/run.sh"] + -- cgit v1.2.3-70-g09d2