nightly updated archlinux base(-devel) image
https://hub.docker.com/r/immawanderer/archlinux-hugo
surtur
68d8fcd537
Alright, let me tell you what this is all about. 🐋 Docker builds (locally and also in DockerHub) started failing after glibc 3.34 has been updated during jan-feb 2021 and thas caught me on both fedora 33 and archlinux workstation/server boxes (talking OS, not containers now). A hotfix patch has been issued as a workaround to remedy failing builds - |
||
---|---|---|
hooks | ||
.drone.yml | ||
Dockerfile | ||
LICENSE | ||
README.md |
docker-archlinux
This repository provides the Dockerfile to create an updated Arch Linux base image.
⚠️ 🚧 DockerHub issue 🚧 ⚠️
unless you're running Arch as your host OS, please make sure you read through the following issue write-up
⇒ #1
⚠️ 🚧 🚧 🚧 ⚠️
The image is rebuilt approximately every hour to ensure it always has the latest packages.
push mirror lives in this GitHub repo
development happens on this Gitea instance
What you get
- 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.
Purpose
- Arch Linux image with freshly updated package base to build upon
Running the image
- edit the
yourlocalpath
andcontainerpath
variabled 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