Merge pull request #1 from padajuan/master

Added apt-get clean to slim down the container
This commit is contained in:
Andy 2016-09-21 11:55:09 +02:00 committed by GitHub
commit 3cff589f36

View File

@ -2,7 +2,8 @@ FROM ubuntu:xenial
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com> MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
RUN apt-get update && \ RUN apt-get update && \
apt-get -y install python3 virtualenv mpv paxctl apt-get -y install python3 virtualenv mpv paxctl && \
apt-get clean all
# Workaround: pulseaudio client library likes to remove /dev/shm/pulse-shm-* # Workaround: pulseaudio client library likes to remove /dev/shm/pulse-shm-*
# files created by the host, causing sound to stop working. # files created by the host, causing sound to stop working.