Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow customize base image #292

Merged
merged 1 commit into from
Aug 25, 2021
Merged
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
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
ARG BASE_IMAGE=quay.io/centos/centos:stream8

## Build iPXE w/ IPv6 Support
## Note: we are pinning to a specific commit for reproducible builds.
## Updated as needed.
FROM quay.io/centos/centos:stream8 AS ironic-builder

FROM $BASE_IMAGE AS ironic-builder

RUN dnf install -y gcc git make xz-devel
WORKDIR /tmp
COPY . .
Expand Down Expand Up @@ -29,7 +33,7 @@ RUN if [ $(uname -m) = "x86_64" ]; then \
touch /tmp/esp.img; \
fi

FROM quay.io/centos/centos:stream8
FROM $BASE_IMAGE

ENV PKGS_LIST=main-packages-list.txt
ARG EXTRA_PKGS_LIST
Expand Down