From ab77571c55483448b7a7c788a533f53e563793a6 Mon Sep 17 00:00:00 2001 From: Aaron Schlesinger Date: Tue, 5 Jan 2016 14:49:22 -0800 Subject: [PATCH] fix(Dockerfile): run the server without alpine support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Doing so was making minio look at /.minio for config on startup, which was failing because it’s not allowed to write to / inside the container. Fixes #43 --- rootfs/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/rootfs/Dockerfile b/rootfs/Dockerfile index b2933ab..6a12fdb 100644 --- a/rootfs/Dockerfile +++ b/rootfs/Dockerfile @@ -4,8 +4,6 @@ ENV MINIOHOME /home/minio ENV MINIOUSER minio ENV DEIS_RELEASE=2.0.0-dev RUN useradd -m -d $MINIOHOME $MINIOUSER -# this is so the minio client (https://github.com/minio/mc) works properly -ENV DOCKERIMAGE=1 RUN apt-get update -y && apt-get install -y -q \ ca-certificates \