blob: b5464761eb4e2a819a9e74e902016a8de12013c1 (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
FROM centos:centos7
MAINTAINER David Lawrence <dkl@mozilla.com>
# Environment configuration
ENV USER bugzilla
ENV HOME /home/bugzilla
ENV BUGZILLA_ROOT $HOME/devel/htdocs/bmo
ENV GITHUB_BASE_GIT https://github.com/mozilla/webtools-bmo-bugzilla
ENV GITHUB_BASE_BRANCH master
# Copy over configuration files
COPY files /files
# Distribution package installation
RUN yum -y -q install https://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm epel-release \
&& yum -y -q install `cat /files/rpm_list` \
&& yum clean all
# User configuration
RUN useradd -m -G wheel -u 1000 -s /bin/bash $USER \
&& passwd -u -f $USER \
&& echo "bugzilla:bugzilla" | chpasswd
# Apache configuration
RUN cp /files/bugzilla.conf /etc/httpd/conf.d/bugzilla.conf
# MySQL configuration
RUN cp /files/my.cnf /etc/my.cnf \
&& chmod 644 /etc/my.cnf \
&& chown root.root /etc/my.cnf \
&& rm -rf /etc/mysql \
&& rm -rf /var/lib/mysql/* \
&& /usr/bin/mysql_install_db --user=$USER --basedir=/usr --datadir=/var/lib/mysql
# Sudoer configuration
RUN cp /files/sudoers /etc/sudoers \
&& chown root.root /etc/sudoers \
&& chmod 440 /etc/sudoers
# Clone the code repo
RUN su $BUGZILLA_USER -c "git clone $GITHUB_BASE_GIT -b $GITHUB_BASE_BRANCH $BUGZILLA_ROOT"
# Bugzilla dependencies and setup
COPY scripts /scripts
RUN chmod a+x /scripts/*
RUN /scripts/install_deps.sh
RUN /scripts/bugzilla_config.sh
RUN /scripts/my_config.sh
RUN chown -R $USER.$USER $HOME
# Networking
RUN echo "NETWORKING=yes" > /etc/sysconfig/network
EXPOSE 80
EXPOSE 22
EXPOSE 5900
# Testing scripts for CI
ADD https://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar /selenium-server.jar
# Supervisor
RUN cp /files/supervisord.conf /etc/supervisord.conf
RUN chmod 700 /etc/supervisord.conf
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"]
|