cryptpad-docker/Dockerfile

52 lines
1.2 KiB
Docker
Raw Normal View History

# Multistage build to reduce image size and increase security
2020-05-03 00:03:48 +00:00
FROM node:12-buster-slim AS build
# Install requirements to clone repository and install deps
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq git
RUN npm install -g bower
# Create folder for cryptpad
RUN mkdir /cryptpad
WORKDIR /cryptpad
# Get cryptpad from repository submodule
COPY cryptpad /cryptpad
RUN sed -i "s/\/\/httpAddress: \x27::\x27/httpAddress: \x270.0.0.0\x27/" /cryptpad/config/config.example.js
# Install dependencies
RUN npm install --production \
&& npm install -g bower \
&& bower install --allow-root
# Create actual cryptpad image
2020-05-03 00:03:48 +00:00
FROM node:12-buster-slim
# Create user and group for cryptpad so it does not run as root
RUN groupadd cryptpad -g 4001
RUN useradd cryptpad -u 4001 -g 4001 -d /cryptpad
# Copy cryptpad with installed modules
COPY --from=build --chown=cryptpad /cryptpad /cryptpad
USER cryptpad
# Create directory for data
RUN mkdir /cryptpad/data
# Set workdir to cryptpad
WORKDIR /cryptpad
2020-05-03 00:03:48 +00:00
# Volumes for data persistence
VOLUME /cryptpad/blob
VOLUME /cryptpad/block
2020-05-03 00:33:14 +00:00
VOLUME /cryptpad/customize
2020-05-03 00:03:48 +00:00
VOLUME /cryptpad/data
VOLUME /cryptpad/datastore
2020-05-03 00:03:48 +00:00
# Ports
EXPOSE 3000 3001
# Run cryptpad on startup
CMD ["server.js"]