Commit 17090205e3d950f4bc6bac859737c053502352b1
1 parent
556a0755
Exists in
master
Ajustado dockerfile para rodar relatórios;
portabilis/ieducar#193
Showing
1 changed file
with
8 additions
and
0 deletions
Show diff stats
Dockerfile
... | ... | @@ -21,5 +21,13 @@ CMD mkdir /var/www/html/i-educar |
21 | 21 | CMD chmod 777 -R /var/www/html/i-educar |
22 | 22 | WORKDIR /var/www/html/i-educar |
23 | 23 | |
24 | +# Instala dependencia relatórios | |
25 | +RUN apt-get install -y software-properties-common python-software-properties \ | |
26 | + && add-apt-repository -y ppa:openjdk-r/ppa \ | |
27 | + && apt-get -y update \ | |
28 | + && apt-get -y install openjdk-7-jdk | |
29 | + | |
30 | +CMD chmod 777 /home/portabilis/ieducar/modules/Reports/ReportSources/Portabilis/ | |
31 | + | |
24 | 32 | CMD /usr/sbin/apache2ctl -D FOREGROUND |
25 | 33 | ... | ... |