-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
42 lines (31 loc) · 864 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM ubuntu:14.04
MAINTAINER Andrea Kimball "andrea.kimball@pomona.edu"
RUN apt-get update
RUN apt-get -y install \
python \
build-essential \
python-dev \
python-pip \
wget \
git \
vim \
avahi-daemon \
avahi-utils \
python-fuse \
curl
RUN pip install azure-storage
WORKDIR /home
RUN wget https://github.com/libfuse/libfuse/releases/download/fuse_2_9_5/fuse-2.9.5.tar.gz
RUN tar -xvf fuse-2.9.5.tar.gz
WORKDIR /home/fuse-2.9.5
RUN sh configure && make -j8 && make install
WORKDIR /home
RUN wget http://downloads.plexapp.com/plex-media-server/0.9.9.14.531-7eef8c6/plexmediaserver_0.9.9.14.531-7eef8c6_amd64.deb
RUN dpkg -i plexmediaserver_0.9.9.14.531-7eef8c6_amd64.deb
RUN apt-get install -f
WORKDIR /home
RUN git clone https://github.com/mbartoli/blobfs
WORKDIR /home/blobfs
EXPOSE 32400
RUN rm config.py
CMD bash -C 'azureconfig.sh';'bash'