Skip to content

Commit

Permalink
Ditch distroless for Docker image
Browse files Browse the repository at this point in the history
distroless has proven a mantenance burden for us, and it has caused headaches for user when trying to debug issues in the container.

And in 2023, 20MB of extra disk space are neglectible.
  • Loading branch information
juanfont committed May 10, 2023
1 parent 997e934 commit 4c8f8c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN strip /go/bin/headscale
RUN test -e /go/bin/headscale

# Production image
FROM gcr.io/distroless/base-debian11
FROM docker.io/debian:bullseye-slim

COPY --from=build /go/bin/headscale /bin/headscale
ENV TZ UTC
Expand Down

0 comments on commit 4c8f8c6

Please sign in to comment.