mirror of
				https://github.com/Django-LiveView/docs.git
				synced 2025-10-25 01:05:51 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian:12-slim
 | |
| 
 | |
| # set work directory
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| # Print output
 | |
| RUN export TERM=xterm
 | |
| 
 | |
| # install software
 | |
| RUN apt update
 | |
| RUN apt install -y emacs-nox
 | |
| 
 | |
| # Build
 | |
| COPY build.el .
 | |
| ENTRYPOINT emacs --batch --script build.el
 |