"Paciência é a virtude"
As dependências não estavam totalmente prontas. Proxy ... e proxy
RUN locale-gen en_US.UTF-8
RUN dpkg-reconfigure locales
ENV JAVA_HOME /usr/lib/jvm/java-1.7.0-openjdk-amd64
ENV PATH /root/.linuxbrew/bin:$PATH
ENV MANPATH /root/.linuxbrew/share/man:$MANPATH
ENV INFOPATH /root/.linuxbrew/share/info:$INFOPATH
COPY settings.xml ~/.m2/settings.xml
COPY .bowerrc /root/tomcat-war/.bowerrc
root@~/tomcat-war# cat .bowerrc
{
"directory":"app/bower_components",
"proxy":"http://proxy.wsa.com:8000",
"https-proxy":"http://proxy.wsa.com:8000",
"strict-ssl": false,
"allow_root": true
}
root@~/tomcat-war#
root@~/tomcat-war# cat settings.xml | grep proxy
| Unless otherwise specified (by system property or command-line switch), the first proxy
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
<proxy>
<host>http://proxy.wsa.com:8000</host>
</proxy>
| Unless otherwise specified (by system property or command-line switch), the first proxy
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
<proxy>
<username>proxyuser</username>
<password>proxypass</password>
<host>proxy.host.net</host>
</proxy>
root@~/tomcat-war#