This repository provides a Dockerfile to create an updated Arch Linux base(-devel) image.
The image is rebuilt nightly to ensure it always has the latest packages.
push mirror lives in this GitHub repo
development happens on this Gitea instance
- updated Arch Linux base image
That's just it. This makes it possible to just grab the image and install whatever it is you want on top later.
- Arch Linux image with freshly updated package base to build upon
- edit the
yourlocalpath
andcontainerpath
variables or remove them entirely (along with-v
) if you have nothing to mount
docker run -it -v yourlocalpath:containerpath immawanderer/archlinux:latest
- create a new folder
- grab the Dockerfile and place it in that folder
- build the image locally
mkdir -pv mynewfolder
cd ./mynewfolder
wget https://git.dotya.ml/wanderer/docker-archlinux/raw/branch/master/Dockerfile
docker build --pull - < Dockerfile