Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM centos:8 as base
FROM quay.io/centos/centos:stream8 as base
ARG channel="stable"
ARG location

RUN [ -z "${channel}" ] && echo "ARG channel is required" && exit 1 || true

RUN yum -y install jq
RUN yum -y install jq xz
RUN curl https://builds.coreos.fedoraproject.org/streams/${channel}.json -o stable.json && \
cat stable.json | jq '.architectures.x86_64.artifacts.qemu.release' | tr -d '"'

Expand Down