mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			634 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			634 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# syntax = docker/dockerfile:1.0-experimental
 | 
						|
FROM golang:1.12-alpine AS vendored
 | 
						|
RUN  apk add --no-cache git rsync
 | 
						|
WORKDIR /src
 | 
						|
RUN --mount=target=/context \
 | 
						|
  --mount=target=.,type=tmpfs,readwrite  \
 | 
						|
  --mount=target=/go/pkg/mod,type=cache \
 | 
						|
  rsync -a /context/. . && \
 | 
						|
  go mod tidy && go mod vendor && \
 | 
						|
  mkdir /out && cp -r go.mod go.sum vendor /out
 | 
						|
 | 
						|
FROM scratch AS update
 | 
						|
COPY --from=vendored /out /out
 | 
						|
 | 
						|
FROM vendored AS validate
 | 
						|
RUN --mount=target=/context \
 | 
						|
  --mount=target=.,type=tmpfs,readwrite  \
 | 
						|
  rsync -a /context/. . && \
 | 
						|
  git add -A && \
 | 
						|
  rm -rf vendor && \
 | 
						|
  cp -rf /out/* . && \
 | 
						|
  ./hack/validate-vendor check
 |