From ac4ca7ff01a403d4cdad5e1472b739f8c304c11d Mon Sep 17 00:00:00 2001 From: Vishnu Kannan Date: Thu, 20 Oct 2016 12:10:22 -0700 Subject: [PATCH] Adding a new docker container for performing mounts on GCI Signed-off-by: Vishnu kannan --- cluster/gce/gci/mounter/Changelog | 2 +- cluster/gce/gci/mounter/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cluster/gce/gci/mounter/Changelog b/cluster/gce/gci/mounter/Changelog index 6c3a6a637dc..69a5ae874d4 100644 --- a/cluster/gce/gci/mounter/Changelog +++ b/cluster/gce/gci/mounter/Changelog @@ -1,3 +1,3 @@ ## v1 (Thu Oct 20 2016 Vishnu Kannan ) - Creating a container with mount tools pre-installed - - Digest: sha256:e3dad2a7e6e79f8fad8a513f85d7e1489456c829f966908617de21a084270d7f + - Digest: sha256:9b3c1f04ad6b8947af4eb98f1eff2dc54c5664e3469b4cdf722ec5dd2a1dc064 diff --git a/cluster/gce/gci/mounter/Dockerfile b/cluster/gce/gci/mounter/Dockerfile index 77e0fcb983e..27c2bd4459a 100644 --- a/cluster/gce/gci/mounter/Dockerfile +++ b/cluster/gce/gci/mounter/Dockerfile @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM debian:jessie +FROM ubuntu:xenial MAINTAINER vishh@google.com -RUN apt-get update && apt-get install -y nfs-common glusterfs-client +RUN apt-get update && apt-get install -y nfs-common=1:1.2.8-9ubuntu12 glusterfs-client=3.7.6-1ubuntu1 ENTRYPOINT ["/bin/mount"]