From 3ef1f4534932cb612315e75b94b174275d5093d8 Mon Sep 17 00:00:00 2001 From: Mumshad Mannambeth Date: Wed, 12 Jul 2017 10:15:39 -0400 Subject: [PATCH] Install YAS3FS dependencies --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a2ca71a..a61c9b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -86,4 +86,9 @@ RUN chmod 755 helpers/startup.sh # Start services and start web server ENTRYPOINT helpers/startup.sh - +# Install YAS3FS for mounting AWS Bucket +RUN apt-get update -q && apt-get install -y python-pip fuse \ + && apt-get clean -y && rm -rf /var/lib/apt/lists/* +RUN pip install yas3fs +RUN sed -i'' 's/^# *user_allow_other/user_allow_other/' /etc/fuse.conf # uncomment user_allow_other +RUN chmod a+r /etc/fuse.conf # make it readable by anybody, it is not the default on Ubuntu