Skip to content

Commit

Permalink
Remove MySQL installation from Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnert committed May 3, 2017
1 parent 5706531 commit 8d2c87f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 1.1.4-beta9

## Bugfixes

* None

## Features

* Remove MySQL installation from Dockerfile

# Version 1.1.4-beta8

## Bugfixes
Expand Down
10 changes: 2 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,10 @@ MAINTAINER Tim Wagner <tw@appserver.io>
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
Expand Down

0 comments on commit 8d2c87f

Please sign in to comment.