-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
36 lines (27 loc) · 946 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 phusion/baseimage:0.9.11
MAINTAINER needo <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
# Set correct environment variables
ENV HOME /root
# Use baseimage-docker's init system
CMD ["/sbin/my_init"]
# Fix a Debianism of the nobody's uid being 65534
RUN usermod -u 99 nobody
RUN usermod -g 100 nobody
RUN apt-get update -q
# Install Dependencies
RUN apt-get install -qy python wget
# Install PlexConnect v0.4
RUN mkdir /opt/plexconnect
RUN wget https://github.com/iBaa/PlexConnect/archive/v0.4.tar.gz
RUN tar -C /opt/plexconnect -xvf /tmp/v0.4.tar.gz --strip-components 1
RUN chown nobody:users /opt/plexconnect
EXPOSE 80
# Add edge.sh to execute during container startup
RUN mkdir -p /etc/my_init.d
ADD edge.sh /etc/my_init.d/edge.sh
RUN chmod +x /etc/my_init.d/edge.sh
# Add PlexConnect to runit
RUN mkdir /etc/service/plexconnect
ADD plexconnect.sh /etc/service/plexconnect/run
RUN chmod +x /etc/service/plexconnect/run