From d57934d5298f19cf388c4f6cfe07ebedf48c1a4d Mon Sep 17 00:00:00 2001 From: 0x0916 Date: Thu, 22 Jun 2017 17:13:28 +0800 Subject: [PATCH] Dockerfile.build: using ubuntu 17.04 ubuntu 16.04 have not package `libostree-dev`. also, we should install `libglib2.0-dev` package when build skopeo with command `make binary`. Signed-off-by: 0x0916 --- Dockerfile.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.build b/Dockerfile.build index 6ba20df8..04563315 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,4 +1,4 @@ -FROM ubuntu:16.04 +FROM ubuntu:17.04 RUN apt-get update && apt-get install -y \ golang \ @@ -6,7 +6,9 @@ RUN apt-get update && apt-get install -y \ git-core \ libdevmapper-dev \ libgpgme11-dev \ - go-md2man + go-md2man \ + libglib2.0-dev \ + libostree-dev ENV GOPATH=/ WORKDIR /src/github.com/projectatomic/skopeo