1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Install YAS3FS dependencies

This commit is contained in:
Mumshad Mannambeth 2017-07-12 10:15:39 -04:00
parent 3e90928e35
commit 3ef1f45349

View file

@ -86,4 +86,9 @@ RUN chmod 755 helpers/startup.sh
# Start services and start web server # Start services and start web server
ENTRYPOINT helpers/startup.sh 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