23 lines
		
	
	
		
			743 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			743 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # syntax=docker/dockerfile:1
 | |
| 
 | |
| FROM focs.ji.sjtu.edu.cn:5000/gitea/runner-images:ubuntu-latest-slim
 | |
| 
 | |
| RUN apt-get update && \
 | |
|     apt-get install -y --no-install-recommends sudo python3-minimal python3-pip git && \
 | |
|     apt-get clean && \
 | |
|     rm -rf /var/lib/apt/lists/* && \
 | |
|     userdel -r node && \
 | |
|     useradd -u 1000 -ms /bin/bash tt && \
 | |
|     useradd -u 1001 -ms /bin/bash student && \
 | |
|     echo "student ALL=(tt) NOPASSWD:/usr/local/bin/joj3" > /etc/sudoers.d/joj
 | |
| 
 | |
| # install joint-teapot
 | |
| # TODO: change it to FOCS gitea mirror for deployment
 | |
| RUN pip install git+https://mirror.ghproxy.com/https://github.com/BoYanZh/Joint-Teapot --break-system-packages
 | |
| 
 | |
| # install joj3 binary
 | |
| COPY bin/joj3 /usr/local/bin/
 | |
| 
 | |
| USER student
 | |
| WORKDIR /home/student
 |