mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	* make dockerfiles testing only note Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * setup ko image builder for goreleaser Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * remove release-docker Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * remove non-debug Dockerfile Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> * Comments and lint Signed-off-by: Kristoffer Dalby <kristoffer@dalby.cc> * build debug images based on debian Signed-off-by: Kristoffer Dalby <kristoffer@dalby.cc> * remove debug flag for goreleaser Signed-off-by: Kristoffer Dalby <kristoffer@dalby.cc> --------- Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com> Signed-off-by: Kristoffer Dalby <kristoffer@dalby.cc>
		
			
				
	
	
		
			34 lines
		
	
	
		
			934 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			934 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# This Dockerfile and the images produced are for testing headscale,
 | 
						|
# and are in no way endorsed by Headscale's maintainers as an
 | 
						|
# official nor supported release or distribution.
 | 
						|
 | 
						|
FROM docker.io/golang:1.22-bookworm AS build
 | 
						|
ARG VERSION=dev
 | 
						|
ENV GOPATH /go
 | 
						|
WORKDIR /go/src/headscale
 | 
						|
 | 
						|
COPY go.mod go.sum /go/src/headscale/
 | 
						|
RUN go mod download
 | 
						|
 | 
						|
COPY . .
 | 
						|
 | 
						|
RUN CGO_ENABLED=0 GOOS=linux go install -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=$VERSION" -a ./cmd/headscale
 | 
						|
RUN test -e /go/bin/headscale
 | 
						|
 | 
						|
# Debug image
 | 
						|
FROM docker.io/golang:1.22-bookworm
 | 
						|
 | 
						|
COPY --from=build /go/bin/headscale /bin/headscale
 | 
						|
ENV TZ UTC
 | 
						|
 | 
						|
RUN apt-get update \
 | 
						|
  && apt-get install --no-install-recommends --yes less jq \
 | 
						|
  && rm -rf /var/lib/apt/lists/* \
 | 
						|
  && apt-get clean
 | 
						|
RUN mkdir -p /var/run/headscale
 | 
						|
 | 
						|
# Need to reset the entrypoint or everything will run as a busybox script
 | 
						|
ENTRYPOINT []
 | 
						|
EXPOSE 8080/tcp
 | 
						|
CMD ["headscale"]
 |