6 lines
172 B
Docker
6 lines
172 B
Docker
FROM archlinux:base-devel
|
|
|
|
RUN pacman -Syu --noconfirm fish git curl wget unzip tar gzip bzip2 xz && \
|
|
pacman -Scc --noconfirm && \
|
|
rm -rf /var/cache/pacman/pkg/*
|
|
|