You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			467 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			467 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # This is a Docker image for the Drone CI system.
 | |
| # Use the following command to start the container:
 | |
| #    docker run -p 127.0.0.1:80:80 -t drone/drone
 | |
| 
 | |
| FROM google/golang
 | |
| ENV DRONE_SERVER_PORT :80
 | |
| 
 | |
| ADD . /gopath/src/github.com/drone/drone/
 | |
| WORKDIR /gopath/src/github.com/drone/drone
 | |
| 
 | |
| RUN apt-get update
 | |
| RUN apt-get -y install zip libsqlite3-dev sqlite3 1> /dev/null 2> /dev/null
 | |
| RUN make deps build test embed install
 | |
| 
 | |
| EXPOSE 80
 | |
| ENTRYPOINT ["/usr/local/bin/droned"]
 |