33 lines
1013 B
Docker
33 lines
1013 B
Docker
FROM greyltc/archlinux-aur:yay
|
|
|
|
ARG JDK=jdk11-openjdk
|
|
ARG UID=1000
|
|
ARG GID=100
|
|
ARG UNAME=divestos
|
|
ENV BASE_DIR=/android
|
|
|
|
RUN echo -e "[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
|
|
|
|
RUN groupadd -g $GID -o $UNAME \
|
|
&& useradd -m -u $UID -g $GID -o -G wheel -s /bin/bash $UNAME \
|
|
&& echo "$UNAME ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers \
|
|
&& mkdir $BASE_DIR && chown $UID:$GID $BASE_DIR
|
|
|
|
RUN sudo -u $UNAME -D~ bash -c \
|
|
"yay -Syu --removemake --needed --noprogressbar --noconfirm \
|
|
clamav clamav-unofficial-sigs nano gnupg bash-completion \
|
|
$JDK jack2 openssh gocryptfs wget git git-lfs \
|
|
ttf-dejavu ttf-fira-sans lineageos-devel" \
|
|
&& paccache -rk0
|
|
|
|
RUN set -ex; git config --global color.ui true; \
|
|
echo "source /etc/profile.d/init.sh" >> /etc/bash.bashrc
|
|
|
|
COPY configs/default.env configs/init.sh /etc/profile.d/
|
|
COPY configs/divestos /bin
|
|
RUN chmod +x /bin/divestos
|
|
|
|
USER $UNAME
|
|
WORKDIR $BASE_DIR
|
|
CMD [ "/bin/bash", "-c", "divestos init; /bin/bash" ]
|