Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cryptpad
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
conesphere
podman
hub
cryptpad
Merge requests
!6
cryptpad now requires onlyoffice to be installed separately
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
cryptpad now requires onlyoffice to be installed separately
main
into
stable
Overview
0
Commits
9
Pipelines
8
Changes
1
Merged
Michael Thaler
requested to merge
main
into
stable
1 year ago
Overview
0
Commits
9
Pipelines
8
Changes
1
Expand
0
0
Merge request reports
Compare
stable
version 6
80a7f37e
1 year ago
version 5
8c2f1402
1 year ago
version 4
fdfe27f4
1 year ago
version 3
521eee16
1 year ago
version 2
241d7746
1 year ago
version 1
5d01106e
1 year ago
stable (base)
and
latest version
latest version
9c96a459
9 commits,
1 year ago
version 6
80a7f37e
8 commits,
1 year ago
version 5
8c2f1402
7 commits,
1 year ago
version 4
fdfe27f4
6 commits,
1 year ago
version 3
521eee16
5 commits,
1 year ago
version 2
241d7746
4 commits,
1 year ago
version 1
5d01106e
3 commits,
1 year ago
1 file
+
11
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Containerdir/Containerfile
+
11
−
0
Options
@@ -27,12 +27,23 @@ RUN npm install --omit=dev \
# Create actual cryptpad image
FROM
node:lts-slim
RUN
apt-get update
&&
apt-get
-y
upgrade
#upgrade as upstream containers might be outdated
# 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
##### cryptpad onlyoffice block
# curl is a requirement for next operation
RUN
apt-get
install
-y
curl less git
#onlyoffice is a separate installation as of https://github.com/cryptpad/cryptpad/releases/tag/2024.3.0
RUN
/cryptpad/install-onlyoffice.sh
-a
#### end cryptpad onlyoffice block
# act as user cryptpad from now on
USER
cryptpad
# Set workdir to cryptpad
Loading