nightly updated archlinux base(-devel) image https://hub.docker.com/r/immawanderer/archlinux-hugo
Go to file
surtur 30419ebfc3
All checks were successful
continuous-integration/drone/push Build is passing
ci,dockerile,makefile: use FQ image paths
2023-10-18 15:02:18 +02:00
hooks build: enable BuildKit via build hook env var 2021-03-09 21:25:56 +01:00
.drone.yml ci,dockerile,makefile: use FQ image paths 2023-10-18 15:02:18 +02:00
.hadolint.yaml refactor: consolidate consecutive RUN options 2022-03-24 16:33:28 +01:00
Dockerfile ci,dockerile,makefile: use FQ image paths 2023-10-18 15:02:18 +02:00
LICENSE fix: licensor field [skip ci] 2021-03-09 21:42:58 +01:00
Makefile ci,dockerile,makefile: use FQ image paths 2023-10-18 15:02:18 +02:00
README.md ci: switch from hourly to nightly builds 2023-10-18 14:21:55 +02:00

docker-archlinux

Build Status Docker Image Version (latest by date) Docker Image Version (tag latest semver) Docker Image Size (tag) Docker pulls

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

What you get

That's just it. This makes it possible to just grab the image and install whatever it is you want on top later.

Purpose

  • Arch Linux image with freshly updated package base to build upon

Running the image

  • edit the yourlocalpath and containerpath variables or remove them entirely (along with -v) if you have nothing to mount
docker run -it -v yourlocalpath:containerpath immawanderer/archlinux:latest

Building the image locally

  • 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