2020-01-28 20:07:35 +13:00
|
|
|
FROM debian:stretch-slim
|
2020-01-27 14:28:39 +13:00
|
|
|
|
2020-02-03 11:48:23 +13:00
|
|
|
#
|
2020-01-27 14:28:39 +13:00
|
|
|
# install neko dependencies
|
2020-01-30 20:19:57 +13:00
|
|
|
RUN set -eux; apt-get update; \
|
2020-04-19 12:07:12 +12:00
|
|
|
apt-get install -y --no-install-recommends pulseaudio openbox dbus-x11 xserver-xorg-video-dummy supervisor; \
|
2020-02-12 17:15:54 +13:00
|
|
|
apt-get install -y --no-install-recommends libcairo2 libxcb1 libxrandr2 libxv1 libopus0 libvpx4; \
|
2020-01-13 21:05:38 +13:00
|
|
|
#
|
2020-01-28 20:07:35 +13:00
|
|
|
# clean up
|
2020-01-30 20:19:57 +13:00
|
|
|
apt-get clean -y; \
|
|
|
|
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
|
|
|
|
|
2020-02-03 11:48:23 +13:00
|
|
|
#
|
2020-01-30 20:19:57 +13:00
|
|
|
# add gst to env
|
|
|
|
ENV PATH=/gst/local/bin:$PATH
|
|
|
|
ENV LD_LIBRARY_PATH=/gst/local/lib:$LD_LIBRARY_PATH
|
|
|
|
ENV PKG_CONFIG_PATH=/gst/local/lib/pkgconfig:$PKG_CONFIG_PATH
|
|
|
|
|
2020-02-03 11:48:23 +13:00
|
|
|
#
|
2020-01-30 20:19:57 +13:00
|
|
|
# copy gst
|
|
|
|
COPY .build/gst/local /gst/local/
|