From a647407ca038bc208280ab5d5832f08c2f149464 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 9 Nov 2019 12:22:53 -0600 Subject: [PATCH] Fix dependency in BUILDING.md btrfs/ioctl.h is now included in libbtrfs-dev instead of btrfs-tools. Update BUILDING.md Dockerfile to install the correct dependency. Resolves: #3813 Signed-off-by: Reid Li --- BUILDING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING.md b/BUILDING.md index dd8573bb2..5441edab7 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -138,7 +138,7 @@ You can build an image from this `Dockerfile`: FROM golang RUN apt-get update && \ - apt-get install -y btrfs-tools libseccomp-dev + apt-get install -y libbtrfs-dev libseccomp-dev ``` Let's suppose that you built an image called `containerd/build`. From the