Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/.docker/vlc/Dockerfile

19 lines
398 B
Docker
Raw Permalink Normal View History

2021-04-02 07:37:51 +13:00
ARG BASE_IMAGE=m1k1o/neko:base
FROM $BASE_IMAGE
#
# install vlc
RUN set -eux; apt-get update; \
apt-get install -y --no-install-recommends openbox vlc; \
#
# clean up
apt-get clean -y; \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
ENV VLC_MEDIA="/media"
#
# copy configuation files
COPY supervisord.conf /etc/neko/supervisord/vlc.conf
COPY openbox.xml /etc/neko/openbox.xml