file / Dockerfile
zhzabcd's picture
Update Dockerfile
bc704da verified
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"]