From cc3d9e0f25fe5ddd0276c14359ccfb2830640b8b Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Mon, 3 Jul 2023 10:34:26 +0200 Subject: [PATCH] [Initial Commit] --- Dockerfile.linux.amd64 | 24 ++++++++++++++++++++++++ README.md | 10 ++++++++++ 2 files changed, 34 insertions(+) create mode 100644 Dockerfile.linux.amd64 create mode 100644 README.md diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 new file mode 100644 index 0000000..b0bf9b9 --- /dev/null +++ b/Dockerfile.linux.amd64 @@ -0,0 +1,24 @@ +# use latest roundcubemail container +FROM roundcube/roundcubemail:latest + +# prepare basic stuff +RUN set -e && ln -sf bash /bin/sh +RUN set -e \ + && apt -y update \ + && apt -y upgrade \ + && apt -y install --no-install-recommends --no-install-suggests ca-certificates git wget \ + && apt -y autoremove \ + && apt clean \ + && rm -rf /var/lib/apt/lists/* + +# install plugins using composer +RUN set -e \ + composer \ + --working-dir=/usr/src/roundcubemail/ \ + --prefer-dist \ + --prefer-stable \ + --update-no-dev \ + --no-interaction \ + --optimize-autoloader \ + require \ + johndoh/contextmenu diff --git a/README.md b/README.md new file mode 100644 index 0000000..69bb261 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +[![Build Status](https://ci.simoncor.net/api/badges/siempie/hugo-sws/status.svg)](https://ci.simoncor.net/siempie/hugo-sws) + +Simple container with Roundcube and plugins pre-installed. + +| package | version | link | +|---|---|---| +| roundcube | 1.6.1 | [github](https://github.com/roundcube/roundcubemail) +| johndoh/contextmenu | 3.3.1 | [github](https://github.com/johndoh/roundcube-contextmenu) + +The Dockerfile can be found here: [gitea](https://git.simoncor.net/siempie/roundcube)