mirror of
https://github.com/xwiki-labs/cryptpad-docker.git
synced 2024-11-14 17:25:03 +00:00
fdd0f5c47c
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
51 lines
1.3 KiB
Docker
51 lines
1.3 KiB
Docker
# Multistage build to reduce image size and increase security
|
|
FROM node:16-bullseye-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: '::'@httpAddress: '0.0.0.0'@" /cryptpad/config/config.example.js
|
|
RUN sed -i "s@installMethod: 'unspecified'@installMethod: 'docker'@" /cryptpad/config/config.example.js
|
|
|
|
# Install dependencies
|
|
RUN npm install --production \
|
|
&& npm install -g bower \
|
|
&& bower install --allow-root
|
|
|
|
# Create actual cryptpad image
|
|
FROM node:16-bullseye-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
|
|
|
|
# Set workdir to cryptpad
|
|
WORKDIR /cryptpad
|
|
|
|
# Create directories
|
|
RUN mkdir blob block customize data datastore
|
|
|
|
# Volumes for data persistence
|
|
VOLUME /cryptpad/blob
|
|
VOLUME /cryptpad/block
|
|
VOLUME /cryptpad/customize
|
|
VOLUME /cryptpad/data
|
|
VOLUME /cryptpad/datastore
|
|
|
|
# Ports
|
|
EXPOSE 3000 3001
|
|
|
|
# Run cryptpad on startup
|
|
CMD ["npm", "start"]
|