mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
32 lines
1013 B
Docker
32 lines
1013 B
Docker
ARG BASE_IMAGE=neko_server_runtime:latest
|
|
FROM $BASE_IMAGE
|
|
|
|
ARG SRC_URL="https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en-US"
|
|
|
|
#
|
|
# install xfce and firefox
|
|
RUN set -eux; apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
dbus-x11 xfce4 xfce4-terminal sudo \
|
|
xz-utils bzip2 libgtk-3-0 libdbus-glib-1-2; \
|
|
#
|
|
# fetch latest firefox release
|
|
wget -O /tmp/firefox-setup.tar.bz2 "${SRC_URL}"; \
|
|
mkdir /usr/lib/firefox; \
|
|
tar -xjf /tmp/firefox-setup.tar.bz2 -C /usr/lib; \
|
|
rm -f /tmp/firefox-setup.tar.bz2; \
|
|
ln -s /usr/lib/firefox/firefox /usr/bin/firefox; \
|
|
#
|
|
# add user to sudoers
|
|
usermod -aG sudo neko; \
|
|
echo "neko:neko" | chpasswd; \
|
|
echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers; \
|
|
# clean up
|
|
apt-get --purge autoremove -y xz-utils bzip2; \
|
|
apt-get clean -y; \
|
|
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
|
|
|
|
#
|
|
# copy configuation files
|
|
COPY supervisord.conf /etc/neko/supervisord/xfce.conf
|