From 29e31cdee32888b3b1dd28bd1b1a6e9e910c4749 Mon Sep 17 00:00:00 2001 From: Rune Date: Thu, 7 Jun 2018 00:59:07 +0200 Subject: [PATCH] Replaced crazymanjinn/zfs-utils base image as it's been 2 years without updates. Changed from Debian to Ubuntu base because it's been easier to tailor, otherwise image is fairly similar --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 62e7f5e..a2cb2f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,10 @@ -FROM crazymanjinn/zfs-utils +FROM ubuntu:latest + +RUN apt-get update +RUN apt-get install -y curl lsb-release +RUN apt-get install -y zfs-dkms zfsutils-linux +RUN apt-get -y update +RUN rm -rf /var/lib/apt/lists/* ENV zfswatcher_package="zfswatcher_0.4.6-1_amd64.deb" \ zfswatcher_link="https://github.com/rouben/zfswatcher/releases/download/0.4.6/"