mirror of
				https://github.com/dndx/phantun.git
				synced 2025-11-04 11:55:34 +08:00 
			
		
		
		
	Alpine has worse performance and musl does not work well with Rust `libc` version `3`, use Debian instead.
		
			
				
	
	
		
			34 lines
		
	
	
		
			684 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			684 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
#
 | 
						|
# Dockerfile for phantun
 | 
						|
#
 | 
						|
 | 
						|
#
 | 
						|
# Build stage
 | 
						|
#
 | 
						|
FROM rust:latest AS builder
 | 
						|
 | 
						|
COPY . /phantun
 | 
						|
 | 
						|
RUN cd phantun \
 | 
						|
  && cargo build --release \
 | 
						|
  && strip target/release/server target/release/client \
 | 
						|
  && install target/release/server /usr/local/bin/phantun-server \
 | 
						|
  && install target/release/client /usr/local/bin/phantun-client \
 | 
						|
  && cd - \
 | 
						|
  && rm -r phantun
 | 
						|
 | 
						|
#
 | 
						|
# Runtime stage
 | 
						|
#
 | 
						|
FROM debian:latest
 | 
						|
 | 
						|
COPY --from=builder /usr/local/bin/phantun-server /usr/local/bin/
 | 
						|
COPY --from=builder /usr/local/bin/phantun-client /usr/local/bin/
 | 
						|
COPY docker/phantun.sh /usr/local/bin/
 | 
						|
 | 
						|
ENV USE_IPTABLES_NFT_BACKEND=0
 | 
						|
ENV RUST_LOG=INFO
 | 
						|
 | 
						|
ENTRYPOINT ["phantun.sh"]
 | 
						|
CMD ["phantun-server", "--help"]
 |