mirror of https://github.com/docker/docs.git
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			625 B
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			625 B
		
	
	
	
		
			Docker
		
	
	
	
| FROM golang:1.5.1
 | |
| 
 | |
| RUN apt-get update && apt-get install -y \
 | |
|     libltdl-dev \
 | |
|     --no-install-recommends \
 | |
|     && rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| EXPOSE 4443
 | |
| 
 | |
| ENV NOTARYPKG github.com/docker/notary
 | |
| ENV GOPATH /go/src/${NOTARYPKG}/Godeps/_workspace:$GOPATH
 | |
| 
 | |
| COPY . /go/src/github.com/docker/notary
 | |
| 
 | |
| WORKDIR /go/src/${NOTARYPKG}
 | |
| 
 | |
| RUN go install \
 | |
|     -tags pkcs11 \
 | |
|     -ldflags "-w -X ${NOTARYPKG}/version.GitCommit=`git rev-parse --short HEAD` -X ${NOTARYPKG}/version.NotaryVersion=`cat NOTARY_VERSION`" \
 | |
|     ${NOTARYPKG}/cmd/notary-server
 | |
| 
 | |
| ENTRYPOINT [ "notary-server" ]
 | |
| CMD [ "-config=fixtures/server-config-local.json" ]
 |