dockerfiles/cryptpad/Dockerfile

20 lines
426 B
Docker
Raw Normal View History

2017-07-14 05:27:34 +02:00
FROM node:8-alpine
ARG VERSION=1.10.1
2017-07-14 05:30:27 +02:00
ENV UID=991 GID=991
2017-07-14 05:27:34 +02:00
WORKDIR /cryptpad
RUN apk add --no-cache git tini su-exec ca-certificates libressl tar \
&& wget -qO- https://github.com/xwiki-labs/cryptpad/archive/${VERSION}.tar.gz | tar xz --strip 1 \
&& npm install \
&& npm install -g bower \
&& bower install --allow-root
EXPOSE 3000
2017-07-14 05:30:27 +02:00
VOLUME /cryptpad/datastore /cryptpad/customize
2017-07-14 05:27:34 +02:00
CMD ["/cryptpad/container-start.sh"]