2018-07-04 20:02:29 +00:00
|
|
|
FROM ubuntu:bionic
|
2016-04-30 12:56:38 +00:00
|
|
|
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
|
|
|
|
|
2016-09-21 10:14:23 +00:00
|
|
|
# To avoid problems with Dialog and curses wizards
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
2016-04-30 12:56:38 +00:00
|
|
|
RUN apt-get update && \
|
2017-04-28 10:00:21 +00:00
|
|
|
apt-get -y --no-install-recommends install python3 virtualenv mpv paxctl && \
|
2016-09-21 10:29:58 +00:00
|
|
|
apt-get clean && \
|
|
|
|
rm -rf -- /var/lib/apt/lists
|
2016-04-30 12:56:38 +00:00
|
|
|
|
|
|
|
# Workaround: pulseaudio client library likes to remove /dev/shm/pulse-shm-*
|
|
|
|
# files created by the host, causing sound to stop working.
|
|
|
|
# To fix this, we either want to disable the shm or mount /dev/shm
|
|
|
|
# in read-only mode when starting the container.
|
|
|
|
RUN echo "enable-shm = no" >> /etc/pulse/client.conf
|
|
|
|
|
|
|
|
ENV USER user
|
|
|
|
ENV UID 1000
|
|
|
|
ENV GROUPS audio
|
|
|
|
ENV HOME /home/$USER
|
|
|
|
RUN useradd -u $UID -m -d $HOME -s /usr/sbin/nologin -G $GROUPS $USER
|
|
|
|
|
2016-05-20 08:18:13 +00:00
|
|
|
WORKDIR /opt
|
2016-04-30 12:56:38 +00:00
|
|
|
RUN virtualenv -p python3 venv && \
|
|
|
|
. venv/bin/activate && \
|
|
|
|
pip install --upgrade pip && \
|
2017-04-28 10:00:21 +00:00
|
|
|
pip install --upgrade https://github.com/rg3/youtube-dl/archive/master.zip && \
|
|
|
|
pip install mps-youtube && \
|
2016-05-20 08:18:13 +00:00
|
|
|
deactivate
|
|
|
|
|
|
|
|
# Make mps-youtube grsec friendly
|
|
|
|
# more info: https://en.wikibooks.org/wiki/Grsecurity/Application-specific_Settings#Firefox_.28or_Iceweasel_in_Debian.29
|
|
|
|
#
|
|
|
|
# To build the Docker image, I currently had to disable the following grsec protections:
|
|
|
|
# # grep -E "chroot_deny_chmod|chroot_deny_mknod|chroot_caps" /etc/sysctl.d/grsec.conf
|
|
|
|
# kernel.grsecurity.chroot_deny_chmod = 0
|
|
|
|
# kernel.grsecurity.chroot_deny_mknod = 0
|
|
|
|
# kernel.grsecurity.chroot_caps = 0 (relates to a systemd package)
|
|
|
|
#
|
|
|
|
# (runtime only, since xattrs are not preserved in Docker's final image)
|
|
|
|
# m: Disable MPROTECT // grsec: denied RWX mmap of <anonymous mapping>
|
|
|
|
# RUN setfattr -n user.pax.flags -v "m" /opt/venv/bin/python3
|
|
|
|
#
|
|
|
|
# (permanent change, by converting the binary headers PT_GNU_STACK into PT_PAX_FLAGS)
|
|
|
|
# m: Disable MPROTECT // grsec: denied RWX mmap of <anonymous mapping>
|
|
|
|
RUN paxctl -c -v -m /opt/venv/bin/python3
|
|
|
|
|
|
|
|
USER $USER
|
|
|
|
WORKDIR $HOME
|
|
|
|
RUN mkdir .config
|
2016-04-30 12:56:38 +00:00
|
|
|
|
|
|
|
VOLUME [ "/tmp", "$HOME/.config" ]
|
2016-05-20 08:18:13 +00:00
|
|
|
ENTRYPOINT [ "/opt/venv/bin/mpsyt" ]
|