* New command line tool for transfering files / still very beta. * add readme * use cli11 for argument parsing * json -> msgpack * stop using base64 and use binary which can be stored in message pack
		
			
				
	
	
		
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			469 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:stretch
 | 
						|
 | 
						|
ENV DEBIAN_FRONTEND noninteractive
 | 
						|
RUN apt-get update 
 | 
						|
RUN apt-get -y install g++ 
 | 
						|
RUN apt-get -y install libssl-dev
 | 
						|
RUN apt-get -y install gdb
 | 
						|
RUN apt-get -y install screen
 | 
						|
RUN apt-get -y install procps
 | 
						|
RUN apt-get -y install lsof
 | 
						|
RUN apt-get -y install libz-dev
 | 
						|
RUN apt-get -y install vim
 | 
						|
RUN apt-get -y install make
 | 
						|
RUN apt-get -y install cmake
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
WORKDIR ws
 | 
						|
RUN ["sh", "docker_build.sh"]
 | 
						|
 | 
						|
EXPOSE 8765
 | 
						|
CMD ["/ws/ws", "transfer", "8765"]
 |