docker-images/images/etherpad/Dockerfile

22 lines
533 B
Docker
Raw Normal View History

2020-09-26 13:56:36 +00:00
ARG REPO_LOCATION
# ARG BASE_VERSION
FROM ${REPO_LOCATION}minideb-node AS builder
RUN install_packages git
RUN git clone --branch master https://github.com/ether/etherpad-lite.git /srv/etherpad
2020-09-26 13:59:25 +00:00
RUN cd /srv/etherpad && npm install && chown -R 70:70 /srv/etherpad
2020-09-26 13:56:36 +00:00
###############################################################################
FROM ${REPO_LOCATION}minideb-node
RUN mkdir /srv
COPY --from=builder /srv/etherpad /srv/etherpad
2020-09-26 13:59:25 +00:00
USER 70:70
2020-09-26 13:56:36 +00:00
WORKDIR /srv/etherpad
ENTRYPOINT [ "/bin/sh" "/srv/etherpad/bin/run.sh" ]