35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
|
# Dockerfile - Build image to prepare khanat server
|
||
|
#
|
||
|
# Copyright (C) 2017 AleaJactaEst
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU Affero General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU Affero General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU Affero General Public License
|
||
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
|
||
|
FROM i386/debian:8
|
||
|
MAINTAINER AleaJactaEst
|
||
|
|
||
|
ENV HOSTNAME basic_server
|
||
|
|
||
|
RUN apt-get update ; \
|
||
|
apt-get dist-upgrade -y ; \
|
||
|
apt-get install -y curl nano vim less bash-completion cron logrotate bsd-mailx ; \
|
||
|
apt-get install -y openssh-server sudo net-tools ; \
|
||
|
apt-get install -y lzma xdelta p7zip p7zip-full ; \
|
||
|
DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server ; \
|
||
|
apt-get install -y apache2 php5 libapache2-mod-php5 php5-mysql apache2-utils php5-gd php5-imagick rrdtool screen mcrypt php5-mcrypt python3 ; \
|
||
|
DEBIAN_FRONTEND=noninteractive apt-get install -y phpmyadmin
|
||
|
|
||
|
|
||
|
|