-
Notifications
You must be signed in to change notification settings - Fork 9
/
Dockerfile
56 lines (47 loc) · 1.45 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#preliminary stuff
FROM ubuntu:14.04
MAINTAINER Jay Atkinson <[email protected]>
#install basics
RUN apt-get update
RUN apt-get install -y python2.7
RUN apt-get install -y python-mysqldb
RUN apt-get install -y apache2
RUN apt-get install -y python-django
RUN apt-get install -y mysql-client
RUN apt-get install -y libapache2-mod-wsgi
RUN apt-get install -y python-imaging
RUN apt-get install -y supervisor
RUN apt-get install -y cron
RUN apt-get install -y curl
RUN apt-get install -y python-requests
RUN apt-get install -y language-pack-en-base
RUN dpkg-reconfigure locales
ENV DBUSER root
ENV DBPASS basilisk
#install files
RUN mkdir -p /home/ubuntu/extended/db
COPY . /home/ubuntu/extended/
RUN chmod -R 777 /home/ubuntu/extended
RUN chgrp -R www-data /home/ubuntu/extended
#setup supervisord
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN chmod +x /home/ubuntu/extended/setup_mysql.sh
#setup apache2
RUN mkdir -p /var/lock/apache2
RUN mkdir -p /var/run/apache2
#ENV APACHE_RUN_USER www-data
#ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /var/log/apache2
ENV APACHE_LOCK_DIR /var/lock/apache2
RUN chmod -R 777 /var/www
RUN chgrp -R www-data /var/www
COPY stats.conf /etc/apache2/conf-enabled/
RUN a2enmod wsgi
#add cronjob
COPY crons.conf /etc/cron.d/extended
RUN chmod 0644 /etc/cron.d/extended
RUN crontab /etc/cron.d/extended
#expose the basic web ports
EXPOSE 80 8080
#start supervisor which starts web & mysql
CMD ["/usr/bin/supervisord"]