commit cb3b746e92c76cf51f20d40903a76ede19060007 Author: JeremyStarTM Date: Sun Aug 18 14:57:23 2024 +0200 Initial commit 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.