summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2023-04-18 00:33:12 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2023-05-17 19:55:18 +0000
commitfb0314075721f3ad65148db9900bd51f7cd1b5ab (patch)
tree70ede5c74768fe6f8f0ddbb60d5fd65cb6553a2a
parent6554873850f86993ab300d37b110fc160954f155 (diff)
downloadcoreboot-master.tar.gz
util/docker: Add Dockerfile for Arch LinuxHEADmaster
Add a minimal Dockerfile that pre-installs necessary software which is needed to work with coreboot. Change-Id: I85f3dc7b28b77989f0f1400d1282ed4b17082f65 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/74481 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
-rw-r--r--util/docker/archlinux/Dockerfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/util/docker/archlinux/Dockerfile b/util/docker/archlinux/Dockerfile
new file mode 100644
index 0000000000..9c804835bf
--- /dev/null
+++ b/util/docker/archlinux/Dockerfile
@@ -0,0 +1,19 @@
+FROM archlinux:latest
+
+RUN pacman-key --init && \
+ pacman -Sy --noconfirm archlinux-keyring && \
+ pacman-key --populate && \
+ pacman-key --refresh-keys && \
+ pacman -Syu --noconfirm
+
+RUN pacman -S --noconfirm \
+ base-devel \
+ bash-completion \
+ gcc-ada \
+ git \
+ go \
+ htop \
+ neovim \
+ python3 \
+ tmux && \
+ rm -r /var/cache/pacman/pkg/*