Skip to content

Commit 191423c

Browse files
Dockerfile changes for Help popup and problems with python2
1 parent 9d1a347 commit 191423c

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

docker/Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,21 @@ RUN yum install -y httpd mod_ssl \
88
sudo git \
99
perl perl-CPAN perl-CGI perl-DBI perl-DBD-MySQL perl-DateTime perl-File-MimeInfo \
1010
perl-MailTools perl-XML-Twig perl-libxml-perl perl-DateTime-Format-ICal perl-libwww-perl \
11-
perl-Data-ICal python-pip perl-Digest-SHA1 \
12-
sendmail sendmail-cf \
11+
perl-Data-ICal python-pip perl-Digest-SHA1 perl-XML-Simple \
12+
sendmail sendmail-cf python3 pip3 \
1313
&& yum clean all \
1414
&& rm -rf /var/cache/yum
1515

16+
17+
1618
# Jobber is a lightweight cron replacement written in Go
1719
RUN rpm -i https://github.com/dshearer/jobber/releases/download/v1.4.4/jobber-1.4.4-1.el8.x86_64.rpm
1820
ADD dot-jobber.yaml /root/.jobber
1921

2022
# j2cli is used for templating config files which will be useful for passing environment variables
21-
RUN pip install --no-cache-dir --upgrade pip
22-
RUN pip install --no-cache-dir --upgrade setuptools
23-
RUN pip install --no-cache-dir j2cli
23+
RUN python3 -m pip install --no-cache-dir --upgrade pip
24+
RUN python3 -m pip install --no-cache-dir --upgrade setuptools
25+
RUN python3 -m pip install --no-cache-dir j2cli
2426

2527
# This file was generated by running CPAN once in "manual" not "local::lib" mode
2628
ADD MyConfig.pm /root/.cpan/CPAN/MyConfig.pm

0 commit comments

Comments
 (0)