aboutsummaryrefslogtreecommitdiff
path: root/vlc/Dockerfile
blob: 2c7f50d78d752519b9c4f9ef9e89cc763efa11aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:16.04

RUN export DEBIAN_FRONTEND=noninteractive && \
#    sed -i 's/archive.ubuntu.com/us-west-2.ec2.archive.ubuntu.com/' /etc/apt/sources.list && \
    apt-get update && \
    apt-get install -y apt-utils vlc

RUN \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* && \
    rm -rf /tmp/*

ENTRYPOINT [ "/usr/bin/vlc" ]