forked from Mario1159/osic-stacks
23 lines
538 B
Docker
23 lines
538 B
Docker
# OSIC Stacks - osicstack-base-arch
|
|
# Base image for OSIC Stacks
|
|
FROM greyltc/archlinux-aur:paru
|
|
|
|
# Update packages
|
|
RUN pacman -Syuq --noconfirm
|
|
|
|
# Install packages
|
|
RUN aur-install sudo git python python-pipx xz gnu-free-fonts
|
|
|
|
# Install volare
|
|
ENV PATH="${PATH}:/root/.local/bin"
|
|
RUN pipx install volare
|
|
|
|
# Clean cache
|
|
RUN pacman -Scc
|
|
|
|
# Add main user
|
|
RUN useradd -m designer
|
|
RUN echo "designer ALL=(ALL:ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/designer
|
|
|
|
# Initialize the enviroment keeping container alive
|
|
CMD ["sleep", "infinity"] |