|  |  | @ -10,9 +10,16 @@ RUN pacman -Syu --noconfirm | 
			
		
	
		
			
				
					|  |  |  | RUN pacman -Syu --noconfirm vim git make | 
			
		
	
		
			
				
					|  |  |  | RUN pacman -Syu --noconfirm jupyter-notebook r gcc | 
			
		
	
		
			
				
					|  |  |  |  | 
			
		
	
		
			
				
					|  |  |  | # 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: | 
			
		
	
		
			
				
					|  |  |  | #RUN pip3 install numpy \ | 
			
		
	
		
			
				
					|  |  |  | #pandas \ | 
			
		
	
	
		
			
				
					|  |  | @ -25,7 +32,6 @@ RUN R -e "IRkernel::installspec(user = FALSE)" | 
			
		
	
		
			
				
					|  |  |  | #numdifftools \ | 
			
		
	
		
			
				
					|  |  |  |  | 
			
		
	
		
			
				
					|  |  |  | WORKDIR /home | 
			
		
	
		
			
				
					|  |  |  | COPY .bashrc .bashrc | 
			
		
	
		
			
				
					|  |  |  | #RUN pip install -r requirements.txt | 
			
		
	
		
			
				
					|  |  |  | EXPOSE 8888 | 
			
		
	
		
			
				
					|  |  |  | #CMD ["flask", "run"] |