From e197ca65ea032a58bf92ea66e830c2fda4d6621a Mon Sep 17 00:00:00 2001 From: Luke Jolly Date: Thu, 30 Jun 2022 23:54:36 -0600 Subject: [PATCH] Update alpine to 3.16 and switch from bzr to breezy --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25d80540..9f83c39e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM alpine:3.11.7 +FROM alpine:3.16 ENV GOPATH /go COPY . /go/src/github.com/hound-search/hound RUN apk update \ - && apk add go git subversion libc-dev mercurial bzr openssh tini \ + && apk add go git subversion libc-dev mercurial breezy openssh tini \ && cd /go/src/github.com/hound-search/hound \ && go mod download \ && go install github.com/hound-search/hound/cmds/houndd \