2018-09-27 06:54:55 +00:00
|
|
|
FROM base/archlinux:latest
|
2018-09-28 18:44:48 +00:00
|
|
|
ARG CTNG_UID
|
|
|
|
ARG CTNG_GID
|
|
|
|
RUN groupadd -g $CTNG_GID ctng
|
|
|
|
RUN useradd -d /home/ctng -m -g $CTNG_GID -u $CTNG_UID -s /bin/bash ctng
|
2018-04-15 21:29:09 +00:00
|
|
|
RUN pacman -Syu --noconfirm
|
2018-10-06 15:43:18 +00:00
|
|
|
RUN pacman -S --noconfirm base-devel git help2man python unzip wget
|
2018-09-28 18:44:48 +00:00
|
|
|
RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
|
|
|
|
RUN chmod a+x /sbin/dumb-init
|
2018-10-09 07:03:10 +00:00
|
|
|
RUN echo 'export MENUCONFIG_COLOR=mono' >> /etc/profile
|
2018-09-28 18:44:48 +00:00
|
|
|
ENTRYPOINT [ "/sbin/dumb-init", "--" ]
|