nightly updated archlinux base(-devel) image https://hub.docker.com/r/immawanderer/archlinux-hugo
Go to file
surtur bd4c5abe4d
All checks were successful
continuous-integration/drone/push Build is passing
ci: add workaround for archlinux/docker issue
WORKAROUND for glibc 2.33 and old Docker

refs:
* 478e4de7bd
* https://github.com/actions/virtual-environments/issues/2658
* https://github.com/lxqt/lxqt-panel/pull/1562
2021-02-20 13:19:42 +01:00
hooks initial commit 2020-06-02 16:28:02 +02:00
.drone.yml fix: previous fix didn't fix the step exec limit 2020-11-17 18:45:01 +01:00
Dockerfile ci: add workaround for archlinux/docker issue 2021-02-20 13:19:42 +01:00
LICENSE feat: added LICENSE file 2020-06-02 19:25:56 +02:00
README.md chore: point example command to git.dotya.ml 2020-09-13 23:52:35 +02:00

docker-archlinux

Build Status Docker Cloud Build Status

This repository provides the Dockerfile to create an updated Arch Linux base image.

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

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 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