21 lines
		
	
	
		
			658 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			658 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| From python:3.9.18-bookworm
 | |
| 
 | |
| WORKDIR /home/user
 | |
| 
 | |
| COPY ./requirements.txt /home/user/docker_requirements.txt
 | |
| 
 | |
| 
 | |
| RUN apt-get update
 | |
| RUN apt-get install -y iputils-ping telnetd net-tools vim tcpdump
 | |
| # RUN echo telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd /etc/inetd.conf
 | |
| # RUN service inetutils-inetd start
 | |
| # service inetutils-inetd status
 | |
| 
 | |
| RUN wget https://oss-cdn.nebula-graph.com.cn/package/3.6.0/nebula-graph-3.6.0.ubuntu1804.amd64.deb
 | |
| RUN dpkg -i nebula-graph-3.6.0.ubuntu1804.amd64.deb
 | |
| 
 | |
| RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
 | |
| RUN pip install -r /home/user/docker_requirements.txt
 | |
| 
 | |
| CMD ["bash"]
 |