Drop Mercurial from Dockerfile

We no longer have any Mercurial dependencies, so we don't need to
install it anymore.
This commit is contained in:
mutantmonkey 2017-05-01 21:49:27 -07:00
parent b7fadd9676
commit c6f62fccdf
1 changed files with 1 additions and 1 deletions

View File

@ -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