From 2672708e81160ebf816342cddaa54fabc77ea5fa Mon Sep 17 00:00:00 2001 From: kaiyou Date: Wed, 24 Feb 2016 09:06:27 +0100 Subject: [PATCH] Remove the previous general Dockerfile --- Dockerfile | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 64ec6704..00000000 --- a/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ - - -# Install the Webmail from source - - -# Install the Web admin panel -COPY admin /admin -RUN pip install -r /admin/requirements.txt - -# Configure the webmail -RUN cd /webmail \ - && rm -rf CHANGELOG INSTALL LICENSE README.md UPDGRADING composer.json-dist temp logs \ - && ln -s /data/logs/webmail logs \ - && ln -s /data/webmail/temp temp \ - && ln -s /etc/roundcube.inc.php config/config.inc.php - -# Load the configuration -COPY config /etc/ - -# Copy the entrypoint -COPY start.sh /start.sh - -# Explicitely specify the configuration file to avoid problems when -# the default configuration path changes. -CMD "/start.sh"