mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	In `man/Dockerfile` we are specifying a tagged version of glide to checkout, but never actually checking it out. This checks out the requested version before building. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			855 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM    alpine:3.4
 | 
						|
 | 
						|
RUN     apk add -U git go bash curl gcc musl-dev make
 | 
						|
 | 
						|
RUN     mkdir -p /go/src /go/bin /go/pkg
 | 
						|
ENV     GOPATH=/go
 | 
						|
RUN     export GLIDE=v0.11.1; \
 | 
						|
        export TARGET=/go/src/github.com/Masterminds; \
 | 
						|
        mkdir -p ${TARGET} && \
 | 
						|
        git clone https://github.com/Masterminds/glide.git ${TARGET}/glide && \
 | 
						|
        cd ${TARGET}/glide && \
 | 
						|
        git checkout $GLIDE && \
 | 
						|
        make build && \
 | 
						|
        cp ./glide /usr/bin/glide && \
 | 
						|
        cd / && rm -rf /go/src/* /go/bin/* /go/pkg/*
 | 
						|
 | 
						|
COPY    glide.yaml /manvendor/
 | 
						|
COPY    glide.lock /manvendor/
 | 
						|
WORKDIR /manvendor/
 | 
						|
RUN     glide install && mv vendor src
 | 
						|
ENV     GOPATH=$GOPATH:/go/src/github.com/docker/docker/vendor:/manvendor
 | 
						|
RUN     go build -o /usr/bin/go-md2man github.com/cpuguy83/go-md2man
 | 
						|
 | 
						|
WORKDIR /go/src/github.com/docker/docker/
 | 
						|
ENTRYPOINT ["man/generate.sh"]
 |