From 8d2c87f19c78282be23a4233dea1f248ec1945d5 Mon Sep 17 00:00:00 2001 From: wagnert Date: Wed, 3 May 2017 12:30:55 +0200 Subject: [PATCH] Remove MySQL installation from Dockerfile --- CHANGELOG.md | 10 ++++++++++ Dockerfile | 10 ++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c983ad9f..eeca5a6a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Version 1.1.4-beta9 + +## Bugfixes + +* None + +## Features + +* Remove MySQL installation from Dockerfile + # Version 1.1.4-beta8 ## Bugfixes diff --git a/Dockerfile b/Dockerfile index a631b6657..b7adae9d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,16 +14,10 @@ MAINTAINER Tim Wagner ENV APPSERVER_RUNTIME_BUILD_VERSION 1.1.6-44 # update the sources list -RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 5072E1F5 \ - - # add the MySQL repository to the sources list - && echo "deb http://repo.mysql.com/apt/debian/ jessie mysql-5.6" >> /etc/apt/sources.list.d/mysql.list \ - - # update the sources list - && apt-get update \ +RUN apt-get update \ # install the necessary packages - && DEBIAN_FRONTEND=noninteractive apt-get install supervisor wget git mysql-server -y python-pip \ + && DEBIAN_FRONTEND=noninteractive apt-get install supervisor wget git vim -y python-pip \ # install the Python package to redirect the supervisord output && pip install supervisor-stdout