From 4b75c608194753cb366493eee1ecd7d15c6cb8d7 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 10 Mar 2017 14:08:38 -0500 Subject: [PATCH] Dockerfile: builds an image from master Signed-off-by: Vincent Batts --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50556bc..6cfbafe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM fedora ENV GOPATH /usr/local EXPOSE 7777 -RUN dnf install -y golang git && \ +RUN dnf install -y golang git bzr && \ go get github.com/vbatts/imgsrv && \ rm -rf /usr/local/src /usr/local/pkg && \ - dnf remove -y golang git + dnf remove -y golang git bzr ENTRYPOINT ["/usr/local/bin/imgsrv"]