mirror of
https://github.com/containers/skopeo.git
synced 2025-10-20 18:33:14 +00:00
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 <w@laoqinren.net>
15 lines
266 B
Docker
15 lines
266 B
Docker
FROM ubuntu:17.04
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
golang \
|
|
btrfs-tools \
|
|
git-core \
|
|
libdevmapper-dev \
|
|
libgpgme11-dev \
|
|
go-md2man \
|
|
libglib2.0-dev \
|
|
libostree-dev
|
|
|
|
ENV GOPATH=/
|
|
WORKDIR /src/github.com/projectatomic/skopeo
|