2023-05-16 21:02:52 +08:00
|
|
|
# Multistage build to reduce image size and increase security
|
2023-06-23 20:31:37 +08:00
|
|
|
FROM node:lts-slim AS build
|
2023-05-16 21:02:52 +08:00
|
|
|
|
|
|
|
# Install requirements to clone repository and install deps
|
2023-06-23 20:31:37 +08:00
|
|
|
RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -yq git
|
2023-05-16 21:02:52 +08:00
|
|
|
RUN npm install -g bower
|
|
|
|
|
|
|
|
# Create folder for cryptpad
|
|
|
|
RUN mkdir /cryptpad
|
|
|
|
WORKDIR /cryptpad
|
|
|
|
|
|
|
|
# Get cryptpad from repository submodule
|
|
|
|
COPY . /cryptpad
|
|
|
|
|
|
|
|
RUN sed -i "s@//httpAddress: '::'@httpAddress: '0.0.0.0'@" /cryptpad/config/config.example.js
|
2023-06-23 20:31:37 +08:00
|
|
|
RUN sed -i "s@installMethod: 'unspecified'@installMethod: 'docker'@" /cryptpad/config/config.example.js
|
2023-05-16 21:02:52 +08:00
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
RUN npm install --production \
|
|
|
|
&& npm install -g bower \
|
|
|
|
&& bower install --allow-root
|
|
|
|
|
|
|
|
# Create actual cryptpad image
|
2023-06-23 20:31:37 +08:00
|
|
|
FROM node:lts-slim
|
2023-05-16 21:02:52 +08:00
|
|
|
|
|
|
|
# Create user and group for cryptpad so it does not run as root
|
2023-06-23 20:31:37 +08:00
|
|
|
RUN groupadd cryptpad -g 4001
|
|
|
|
RUN useradd cryptpad -u 4001 -g 4001 -d /cryptpad
|
2023-05-16 21:02:52 +08:00
|
|
|
|
|
|
|
# Copy cryptpad with installed modules
|
|
|
|
COPY --from=build --chown=cryptpad /cryptpad /cryptpad
|
|
|
|
USER cryptpad
|
|
|
|
|
2023-06-22 21:05:50 +08:00
|
|
|
# Copy docker-entrypoint.sh script
|
2023-06-23 20:31:37 +08:00
|
|
|
COPY --chown=cryptpad docker-entrypoint.sh /cryptpad/docker-entrypoint.sh
|
2023-06-22 21:05:50 +08:00
|
|
|
|
2023-05-16 21:02:52 +08:00
|
|
|
# Set workdir to cryptpad
|
|
|
|
WORKDIR /cryptpad
|
|
|
|
|
|
|
|
# Create directories
|
2023-06-22 22:06:16 +08:00
|
|
|
RUN mkdir blob block customize data datastore
|
2023-05-16 21:02:52 +08:00
|
|
|
|
|
|
|
# Volumes for data persistence
|
|
|
|
VOLUME /cryptpad/blob
|
|
|
|
VOLUME /cryptpad/block
|
|
|
|
VOLUME /cryptpad/customize
|
|
|
|
VOLUME /cryptpad/data
|
|
|
|
VOLUME /cryptpad/datastore
|
|
|
|
|
2023-06-23 20:31:37 +08:00
|
|
|
ENTRYPOINT ["/bin/bash", "/cryptpad/docker-entrypoint.sh"]
|
|
|
|
|
2023-05-16 21:02:52 +08:00
|
|
|
# Ports
|
|
|
|
EXPOSE 3000 3001
|
|
|
|
|
|
|
|
# Run cryptpad on startup
|
|
|
|
CMD ["npm", "start"]
|
2023-06-23 20:31:37 +08:00
|
|
|
|