Subversion Repositories VORC

Rev

Rev 61 | Rev 123 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61 Rev 111
Line 19... Line 19...
19
        libssl-dev \
19
        libssl-dev \
20
        mysql-client \
20
        mysql-client \
21
        libmysqlclient-dev \
21
        libmysqlclient-dev \
22
        libapreq2-dev \
22
        libapreq2-dev \
23
        zip && \
23
        zip && \
-
 
24
    cpanm --force \
24
    cpanm DBD::mysql \
25
        DBD::mysql \
25
        DateTime \
26
        DateTime \
26
        Data::ICal::Entry::Event \
27
        Data::ICal::Entry::Event \
27
        Data::ICal \
28
        Data::ICal \
28
        Data::ICal::Entry::Event \
29
        Data::ICal::Entry::Event \
29
        Date::Calc \
30
        Date::Calc \
Line 34... Line 35...
34
        Email::Simple::Creator \
35
        Email::Simple::Creator \
35
        Email::Valid \
36
        Email::Valid \
36
        Spreadsheet::WriteExcel \
37
        Spreadsheet::WriteExcel \
37
        HTML::Tiny \
38
        HTML::Tiny \
38
        Net::Domain::TLD \
39
        Net::Domain::TLD \
39
        Email::MessageID && \
40
        Email::MessageID
-
 
41
 
-
 
42
RUN \
40
    a2enmod cgid && \
43
    a2enmod cgid && \
41
    a2enmod rewrite && \
44
    a2enmod rewrite && \
42
    a2dissite 000-default && \
45
    a2dissite 000-default && \
43
    apt-get update -y && \
46
    apt-get update -y && \
44
    apt-get upgrade -y && \
47
    apt-get upgrade -y && \
45
    apt-get -y clean
48
    apt-get -y clean
Line 46... Line 49...
46
 
49
 
-
 
50
COPY localhost.conf /etc/apache2/sites-enabled/localhost.conf
47
COPY localhost.conf /etc/apache2/sites-enabled/localhost.conf
51
COPY entrypoint.sh /etc/apache2/entrypoint.sh
Line 48... Line 52...
48
COPY .my.cnf /tmp/.my.cnf
52
COPY .my.cnf /tmp/.my.cnf
49
 
53