Initial commit
This commit is contained in:
commit
cb3b746e92
2 changed files with 16 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -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
|
2
README.md
Normal file
2
README.md
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# actions-docker
|
||||||
|
This repository contains the `Dockerfile` used for building the image which powers all of StarOpenSource's action pipelines.
|
Loading…
Reference in a new issue