summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2022-02-20 11:01:06 -0500
committerDan Davison <dandavison7@gmail.com>2022-02-20 11:24:27 -0500
commit3bd840c8e50feee1d8d15db9dbc11d89ed667db1 (patch)
tree724432fcc7cae09096e90a2f0dfe646d7871089e
parent54e96451faa405952acbb12c3ff7e007b54d41b4 (diff)
Use ubuntu
-rwxr-xr-xetc/examples/973-processes-performance-bug5
1 files changed, 2 insertions, 3 deletions
diff --git a/etc/examples/973-processes-performance-bug b/etc/examples/973-processes-performance-bug
index b79e416d..50b08a3c 100755
--- a/etc/examples/973-processes-performance-bug
+++ b/etc/examples/973-processes-performance-bug
@@ -1,9 +1,8 @@
build_oci_img() {
# RUN apk add --no-cache bash git
docker build "$@" - <<'EOF'
- FROM archlinux
- RUN pacman -Sy > /dev/null
- RUN pacman -S --noconfirm --needed coreutils curl gcc bc git > /dev/null
+ FROM ubuntu
+ RUN apt update && apt install -y bc curl gcc git
ENV CARGO_HOME=/usr/local
RUN curl -fsSL 'https://sh.rustup.rs' | sh -s -- -y --profile minimal
RUN /usr/local/bin/cargo install --version 0.11.3 git-delta && cp /usr/local/bin/delta /usr/local/bin/delta-0.11.3