Export in bashrc

This commit is contained in:
Mathieu Sanchez 2019-06-12 14:15:02 +09:00
parent 7c242da452
commit 39caa53de6
2 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,8 @@ RUN apt-get update; apt-get install -y git wget;
RUN cd /root; wget https://download.java.net/openjdk/jdk11/ri/openjdk-11+28_linux-x64_bin.tar.gz; wget http://mirror.navercorp.com/apache/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.tar.gz
RUN echo "\n\nexport JAVA_HOME=/root/jdk-11\nexport PATH=$PATH:/root/jdk-11/bin:/root/apache-maven-3.6.1/bin" > /root/.bashrc
RUN echo "export JAVA_HOME=/root/jdk-11" >> /root/.bashrc \
echo "export PATH=$PATH:/root/jdk-11/bin:/root/apache-maven-3.6.1/bin" >> /root/.bashrc
RUN cd /root; tar -xsvf openjdk-11+28_linux-x64_bin.tar.gz; tar -xsvf apache-maven-3.6.1-bin.tar.gz

View File

@ -2,6 +2,8 @@
rm -rdf /root/nlp
cat /root/.bashrc
git clone https://git.sanchezm.fr/mathieu/CAU-NLP-Spring-2019-PQ-Man-Server.git /root/nlp
cd /root/nlp/CAu_NLP_2019