mirror of https://github.com/docker/docs.git
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			Docker
		
	
	
	
| FROM golang:1.5.1
 | |
| 
 | |
| RUN apt-get update && apt-get install -y \
 | |
| 	libltdl-dev \
 | |
| 	libsqlite3-dev \
 | |
| 	--no-install-recommends \
 | |
| 	&& rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| RUN go get golang.org/x/tools/cmd/vet \
 | |
| 	&& go get golang.org/x/tools/cmd/cover \
 | |
| 	&& go get github.com/tools/godep
 | |
| 
 | |
| COPY . /go/src/github.com/docker/notary
 | |
| 
 | |
| ENV GOPATH /go/src/github.com/docker/notary/Godeps/_workspace:$GOPATH
 | |
| 
 | |
| WORKDIR /go/src/github.com/docker/notary
 |