From c6f62fccdf8cfa2926e4cd18eb11be225fa1e5f9 Mon Sep 17 00:00:00 2001 From: mutantmonkey Date: Mon, 1 May 2017 21:49:27 -0700 Subject: [PATCH] Drop Mercurial from Dockerfile We no longer have any Mercurial dependencies, so we don't need to install it anymore. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ff81bd..60e189d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM golang:alpine RUN set -ex \ - && apk add --no-cache --virtual .build-deps git mercurial \ + && apk add --no-cache --virtual .build-deps git \ && go get github.com/andreimarcu/linx-server \ && apk del .build-deps