Commit 6d981cf137779695bf55d1cb731adb75a2735feb

Authored by Guilherme Andrade Del Cantoni
1 parent 6bf70b85
Exists in master

Remoção de arquivo de instalação do Solr 6.1.0

Showing 2 changed files with 5 additions and 2 deletions   Show diff stats
solr/Dockerfile
... ... @@ -11,7 +11,6 @@ MAINTAINER Guilherme Andrade Del Cantoni <guilherme.cantoni@planejamento.gov.br>
11 11 ############################# INÍCIO DA INSTALAÇÃO #############################
12 12 ENV TERM xterm
13 13  
14   -COPY assets/solr-6.1.0.tgz /tmp/
15 14 COPY assets/index/* /tmp/
16 15 COPY assets/sei-solr-6.1.0.sh /tmp/sei-solr-6.1.0.sh
17 16 COPY install.sh /install.sh
... ...
solr/install.sh
... ... @@ -4,7 +4,11 @@ set -e
4 4  
5 5 # Instalação do pacote Java JDK e utilitários utilizados no provisionamento
6 6 #apk update && apk add lsof curl bash openjdk8-jre
7   -yum -y update && yum -y install lsof curl java-1.8.0-openjdk
  7 +yum -y update && yum -y install lsof curl wget java-1.8.0-openjdk
  8 +
  9 +# Download do Solr, versão 6.1.0
  10 +SOLR_URL=https://archive.apache.org/dist/lucene/solr/6.1.0/solr-6.1.0.tgz
  11 +wget -nv $SOLR_URL -O /tmp/solr-6.1.0.tgz
8 12  
9 13 # Instalação do Apache Solr 6.1
10 14 sh /tmp/sei-solr-6.1.0.sh
... ...