-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (19 loc) · 772 Bytes
/
Copy pathDockerfile
File metadata and controls
24 lines (19 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM debian:jessie
# File Author / Maintainer
MAINTAINER Hendrik Luecketieke <opensource@luecke-tieke.de>
USER root
#sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password your_password'
#sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password your_password'
#sudo apt-get -y install mysql-server
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -q -y --no-install-recommends \
openjdk-8-jdk \
mysql-server \
python \
python-pip \
glpk-utils \
perl5 \
libxml-dom-perl
RUN DEBIAN_FRONTEND=noninteractive apt-get -q -y install mysql-server
# RUN mysqladmin -u root password mysecretpasswordgoeshere
RUN rm -rf /var/lib/apt/lists/*