From cb3b746e92c76cf51f20d40903a76ede19060007 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 18 Aug 2024 14:57:23 +0200 Subject: [PATCH] Initial commit --- Dockerfile | 14 ++++++++++++++ README.md | 2 ++ 2 files changed, 16 insertions(+) create mode 100644 Dockerfile create mode 100644 README.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..afc0621 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM archlinux:base-devel + +# Tweak pacman.conf +RUN sed 's/\#ParallelDownloads = 5/ParallelDownloads = 15/g' -i /etc/pacman.conf + +# Initialize pacman keyring +RUN pacman-key --init +RUN pacman-key --populate + +# Update system +RUN pacman -Syu --noconfirm + +# Install packages required for actions to function properly +RUN pacman -S --noconfirm nodejs git diff --git a/README.md b/README.md new file mode 100644 index 0000000..427c6c4 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# actions-docker +This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's action pipelines.