21 lines
675 B
Docker
21 lines
675 B
Docker
ARG BASE_IMAGE=m1k1o/neko:arm-base
|
|
FROM $BASE_IMAGE
|
|
|
|
#
|
|
# install neko chromium
|
|
RUN set -eux; apt-get update; \
|
|
apt-get install -y --no-install-recommends unzip chromium-browser openbox libwidevinecdm0; \
|
|
ln -s /usr/bin/chromium-browser /usr/bin/chromium; \
|
|
#
|
|
# clean up
|
|
apt-get --purge autoremove -y unzip; \
|
|
apt-get clean -y; \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
|
|
|
|
#
|
|
# copy configuation files
|
|
COPY supervisord.conf /etc/neko/supervisord/chromium.conf
|
|
COPY --chown=neko preferences.json /home/neko/.config/chromium/Default/Preferences
|
|
COPY policies.json /etc/chromium/policies/managed/policies.json
|
|
COPY openbox.xml /etc/neko/openbox.xml
|