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/.m1k1o/xfce/Dockerfile

21 lines
501 B
Docker
Raw Permalink Normal View History

2021-04-02 07:37:51 +13:00
ARG BASE_IMAGE=m1k1o/neko:base
FROM $BASE_IMAGE
2021-03-23 04:22:52 +13:00
#
2021-03-23 06:55:45 +13:00
# install xfce
2021-03-23 04:22:52 +13:00
RUN set -eux; apt-get update; \
apt-get install -y --no-install-recommends xfce4 xfce4-terminal sudo; \
#
# add user to sudoers
usermod -aG sudo neko; \
echo "neko:neko" | chpasswd; \
2021-03-23 05:15:01 +13:00
echo "%sudo ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers; \
2021-03-23 04:22:52 +13:00
# clean up
apt-get clean -y; \
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
#
# copy configuation files
COPY supervisord.conf /etc/neko/supervisord/xfce.conf