mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	This commit changes the SQLite dependency to one that does not depend on CGO. It uses a C-to-Go translated sqlite library that is Pure go.
		
			
				
	
	
		
			23 lines
		
	
	
		
			446 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			446 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# Builder image
 | 
						|
FROM docker.io/golang:1.17.7-bullseye AS build
 | 
						|
ENV GOPATH /go
 | 
						|
WORKDIR /go/src/headscale
 | 
						|
 | 
						|
COPY go.mod go.sum /go/src/headscale/
 | 
						|
RUN go mod download
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
RUN GGO_ENABLED=0 GOOS=linux go install -a ./cmd/headscale
 | 
						|
RUN strip /go/bin/headscale
 | 
						|
RUN test -e /go/bin/headscale
 | 
						|
 | 
						|
# Production image
 | 
						|
FROM gcr.io/distroless/base-debian11
 | 
						|
 | 
						|
COPY --from=build /go/bin/headscale /bin/headscale
 | 
						|
ENV TZ UTC
 | 
						|
 | 
						|
EXPOSE 8080/tcp
 | 
						|
CMD ["headscale"]
 |