Added apt-get clean to slim down the container

This commit is contained in:
Juan Manuel Parrilla Madrid 2016-09-21 10:25:07 +02:00
parent 7c6549a5c7
commit 454491b682

View File

@ -2,7 +2,8 @@ FROM ubuntu:xenial
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
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-*
# files created by the host, causing sound to stop working.