-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDockerfile
23 lines (17 loc) · 938 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# hadolint ignore=DL3007
ARG UBUNTU_VERSION=noble
FROM myoung34/github-runner:ubuntu-${UBUNTU_VERSION}
# Redefining UBUNTU_VERSION without a value inherits the global default
ARG UBUNTU_VERSION
LABEL maintainer="[email protected]"
RUN apt-get update -y && apt-get install -y \
bc bison build-essential cmake cpu-checker curl dumb-init elfutils ethtool flex g++ gawk git \
iproute2 iptables iputils-ping jq keyutils libguestfs-tools python3-minimal python3-docutils \
rsync software-properties-common sudo tree wget xz-utils zstd
RUN apt-get update -y && apt-get install -y \
binutils-dev libcap-dev libdw-dev libelf-dev libssl-dev ncurses-dev
RUN apt-get update -y && apt-get install -y \
qemu-guest-agent qemu-kvm qemu-system-arm qemu-system-s390x qemu-system-x86 qemu-utils
# Install LLVM with automatic script (https://apt.llvm.org)
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
RUN apt-get clean