soc/intel/cmn/cse: Deprecate CONFIG_SOC_INTEL_CSE_RW_VERSION
[coreboot2.git] / util / docker / archlinux / Dockerfile.base
blob890e9227ec7f0bf1e63a97e99968fac941b7686f
1 FROM archlinux:latest
3 RUN \
4         echo "export EDITOR=nvim" > /etc/profile.d/cbsettings.sh && \
5         chmod 755 /etc/profile.d/cbsettings.sh
7 RUN pacman-key --init && \
8         pacman -Sy --noconfirm archlinux-keyring && \
9         pacman-key --populate && \
10         pacman-key --refresh-keys && \
11         pacman -Syu --noconfirm
13 RUN pacman -S --noconfirm \
14         base-devel \
15         bash-completion \
16         bc \
17         bzip2 \
18         ccache \
19         cmake \
20         cscope \
21         dtc \
22         gcc-ada \
23         git \
24         go \
25         htop \
26         lcov \
27         less \
28         meson \
29         msitools \
30         neovim \
31         nss \
32         openssh \
33         openssl \
34         python3 \
35         shellcheck \
36         tmux \
37         unzip \
38         xz && \
39         rm -r /var/cache/pacman/pkg/*