mirror of
https://github.com/cupcakearmy/docker-etherpad.git
synced 2025-09-05 21:00:40 +00:00
docker
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM node:lts-alpine
|
||||
|
||||
# master | develop | ...
|
||||
ARG ETHERPAD_VERSION=master
|
||||
|
||||
ARG DIR=/etherpad
|
||||
ARG TMP=/tmp/etherpad.tar.gz
|
||||
|
||||
ENV NODE_ENV=production
|
||||
|
||||
WORKDIR ${DIR}
|
||||
|
||||
RUN echo "Getting version: ${ETHERPAD_VERSION}" && \
|
||||
apk add --no-cache git && \
|
||||
git clone --branch ${ETHERPAD_VERSION} git://github.com/ether/etherpad-lite.git .
|
||||
|
||||
ADD start.sh .
|
||||
|
||||
CMD ["sh", "start.sh"]
|
Reference in New Issue
Block a user