adds etherpad module

This commit is contained in:
2026-06-29 12:01:49 +01:00
parent 74dc86d56c
commit 75ca9d485d
8 changed files with 829 additions and 1 deletions
+11
View File
@@ -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