From 75ca9d485d3bc98e80396c566278b9db8ba54d4b Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 29 Jun 2026 12:01:49 +0100 Subject: adds etherpad module --- etherpad.Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 etherpad.Dockerfile (limited to 'etherpad.Dockerfile') diff --git a/etherpad.Dockerfile b/etherpad.Dockerfile new file mode 100644 index 0000000..fd76a88 --- /dev/null +++ b/etherpad.Dockerfile @@ -0,0 +1,11 @@ +ARG ALPINE_VERSION=3.23 +FROM docker.io/alpine:${ALPINE_VERSION} +RUN mkdir -p /var/app +WORKDIR /var/app +ARG ETHERPAD_VERSION +RUN apk --no-cache add pnpm \ + && ENV=~/.profile SHELL=sh pnpm setup \ + && source ~/.profile \ + && pnpm install --global tsx +COPY etherpad/etherpad-${ETHERPAD_VERSION} . +CMD pnpx tsx src/node/server.ts -- cgit v1.2.3