File size: 220 Bytes
d76b3ea 2e1e613 d76b3ea 2e1e613 c274129 d76b3ea b132a01 d76b3ea bc704da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM alpine AS builder
USER root
RUN apk add --no-cache nodejs npm git
WORKDIR /home
RUN git clone --branch master https://github.com/ether/etherpad-lite.git
EXPOSE 9001
USER root
CMD ["./etherpad-lite/bin/run.sh"]
|