| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -5,22 +5,23 @@ MAINTAINER gmarxcc | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					LABEL version = "0.1" | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					ENV LANG = C.UTF-8 LC_ALL=C.UTF-8 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# installing python 3, git and pip3: | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# installing vim git make and other tools | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm vim git make | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm jupyter-notebook r gcc | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm pandoc gnuplot emacs | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#Installing LaTeX | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#-->   Delete comment to enable Full LaTeX installation | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#RUN pacman -Syu --noconfirm texlive-most | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#--> basic installation or minimal | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm texlive-core | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Installing R packages and enabling R in jupyter | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					COPY .bashrc .bashrc | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN R -e "install.packages('IRkernel',dependencies=TRUE, repos='http://cran.rstudio.com/')" | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN R -e "IRkernel::installspec(user = FALSE)" | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Installing LaTeX | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#Delete comment to enable Full LaTeX installation | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#RUN pacman -Syu --noconfirm texlive-most | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#basic installation or minimal | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					RUN pacman -Syu --noconfirm texlive-core | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# installing modules: | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					# Installng modules: | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#RUN pip3 install numpy \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#pandas \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#matplotlib \ | 
				
			
			
		
	
	
		
			
				
					| 
						
						
						
							
								
							
						
					 | 
				
				 | 
				
					@ -32,6 +33,8 @@ RUN pacman -Syu --noconfirm texlive-core | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#numdifftools \ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					WORKDIR /home | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#RUN pip install -r requirements.txt | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					COPY .bashrc .bashrc | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					COPY .bins/* /usr/local/bin | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					EXPOSE 8888 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					#CMD ["flask", "run"] |