-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Update example 'full' apache Dockerfile for Trixie #2471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,10 +6,13 @@ RUN set -ex; \ | |
| apt-get install -y --no-install-recommends \ | ||
| ffmpeg \ | ||
| ghostscript \ | ||
| libmagickcore-6.q16-6-extra \ | ||
| libmagickcore-7.q16-10-extra \ | ||
| procps \ | ||
| smbclient \ | ||
| supervisor \ | ||
| lsb-release \ | ||
| ca-certificates \ | ||
| curl \ | ||
| # libreoffice \ | ||
| ; \ | ||
| rm -rf /var/lib/apt/lists/* | ||
|
|
@@ -18,6 +21,10 @@ RUN set -ex; \ | |
| \ | ||
| savedAptMark="$(apt-mark showmanual)"; \ | ||
| \ | ||
| curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb; \ | ||
| dpkg -i /tmp/debsuryorg-archive-keyring.deb; \ | ||
| sh -c 'echo "deb [signed-by=/usr/share/keyrings/debsuryorg-archive-keyring.gpg] https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'; \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This repo does not provide
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we should just remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Then how would we get imap working? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, I think I see how https://stackoverflow.com/a/79444588 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More info php/pecl-mail-imap#3 Looks like Nextcloud will need to support a different imap extension like |
||
| \ | ||
| apt-get update; \ | ||
| apt-get install -y --no-install-recommends \ | ||
| libbz2-dev \ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those are not required as runtime dependencies. And already included in the base image anyway.