Skip to content

Commit

Permalink
Merge pull request #40 from felixfontein/images
Browse files Browse the repository at this point in the history
quay.io/official-images/ seems to be dead, let's get the images from Docker Hub
  • Loading branch information
felixfontein authored Feb 20, 2023
2 parents 51e9b52 + f6edad5 commit ac6f643
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible-test/archlinux/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex
SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
DEPENDENCIES="$(cat ${SCRIPT_DIR}/dependencies.txt | tr '\n' ' ')"

build=$(buildah from quay.io/official-images/archlinux:latest)
build=$(buildah from docker.io/library/archlinux:latest)
buildah run "${build}" -- /bin/bash -c "pacman -Syy && pacman-key --init && pacman -S archlinux-keyring --noconfirm && pacman -Su --noconfirm && pacman -S ${DEPENDENCIES} --noconfirm && pacman -Scc --noconfirm"

# Extra python dependencies
Expand Down
2 changes: 1 addition & 1 deletion ansible-test/debian-bullseye/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -ex
SCRIPT_DIR=$(cd `dirname $0` && pwd -P)
DEPENDENCIES="$(cat ${SCRIPT_DIR}/dependencies.txt | tr '\n' ' ')"

build=$(buildah from quay.io/official-images/debian:bullseye)
build=$(buildah from docker.io/library/debian:bullseye)
buildah run "${build}" -- /bin/bash -c "apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get upgrade -y --no-install-recommends && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ${DEPENDENCIES} && apt-get clean && rm -rf /var/lib/apt/lists/*"

# Extra python dependencies
Expand Down

0 comments on commit ac6f643

Please sign in to comment.