Skip to content

Commit

Permalink
Allow different kayobe container image base images
Browse files Browse the repository at this point in the history
This change adds an argument to change the base image when building
a kayobe container image. This is required for the Zed release
of Openstack because there is no support for CentOS 8.
  • Loading branch information
Alex-Welsh committed Aug 22, 2023
1 parent 5232d68 commit 3db1659
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/kayobe/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# syntax=docker/dockerfile:1.2

FROM quay.io/centos/centos:stream8
ARG BASE_IMAGE="quay.io/centos/centos:stream8"
FROM ${BASE_IMAGE}
MAINTAINER "Will Szumski" <[email protected]>

# Unclear at this time if different environments will change
Expand Down

0 comments on commit 3db1659

Please sign in to comment.