You've already forked git-docker
							
							
		
			All checks were successful
		
		
	
	Lint Markdown files / markdown-lint (pull_request) Successful in 11s
				
			Lint Markdown files / markdown-lint (push) Successful in 13s
				
			Release / push-arm64 (push) Successful in 1m11s
				
			Release / push-amd64 (push) Successful in 1m49s
				
			Release / push-manifest (push) Successful in 11s
				
			Release / sync-to-hub-docker-io (push) Successful in 44s
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			398 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			398 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM docker.io/library/alpine:3.22.1
 | |
| 
 | |
| RUN apk add --no-cache \
 | |
|       bash \
 | |
|       ca-certificates \
 | |
|       curl \
 | |
|       git \
 | |
|       git-lfs \
 | |
|       openssh \
 | |
|       perl \
 | |
|       sudo
 | |
| 
 | |
| ADD rootfs /
 | |
| 
 | |
| # RUN adduser -g Drone -s /bin/sh -D -u 1000 drone
 | |
| # RUN echo 'drone ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/drone
 | |
| # USER drone:drone
 | |
| # RUN chmod -R 777 /home/drone
 | |
| 
 | |
| ENTRYPOINT ["/usr/local/bin/clone"] |