-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
valentinab25
committed
Oct 16, 2024
1 parent
d38326e
commit d073589
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
FROM debian:stable-slim | ||
FROM debian:11-slim | ||
|
||
LABEL maintainer.original="David Batranu <[email protected]>" | ||
LABEL maintainer.current="ipunkt Business Solutions <[email protected]>" | ||
|
||
ENV ROUNDCUBE_VERSION="1.3.1" | ||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
ENV MT_USER mailtrap | ||
ENV MT_PASSWD mailtrap | ||
ENV MT_MAILBOX_LIMIT 51200000 | ||
ENV MT_MESSAGE_LIMIT 10240000 | ||
ENV MT_USER=mailtrap | ||
ENV MT_PASSWD=mailtrap | ||
ENV MT_MAILBOX_LIMIT=51200000 | ||
ENV MT_MESSAGE_LIMIT=10240000 | ||
|
||
RUN apt-get update && apt-get install -q -y \ | ||
postfix \ | ||
dovecot-imapd \ | ||
sqlite \ | ||
sqlite3 \ | ||
php \ | ||
php-mbstring \ | ||
php-sqlite3 \ | ||
|