NO-JIRA: Fix COPY path in Dockerfile.art for Konflux builds - #176
Conversation
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Advanced Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jan--f, redhat-chai-bot, simonpasquier The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/retitle NO-JIRA: Fix COPY path in Dockerfile.art for Konflux builds @redhat-chai-bot. why using |
|
@redhat-chai-bot: This pull request explicitly references no jira issue. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
Thanks @machine424 — the AI-generated. Review for accuracy. |
e2838fc
into
openshift:release-coo-1.5
Summary
Fix the
COPYsource path inDockerfile.artto match the actual repository layout.Problem
The current Dockerfile uses
COPY alertmanager/ .which expects the source code to be in analertmanager/subdirectory. However, the source code in this repository lives at the root level — there is noalertmanager/directory. This causes Konflux builds to fail with:Fix
Change
COPY alertmanager/ .toCOPY . .so the source is copied from the build context root (where it actually lives) into the build WORKDIR.AI-generated. Review for accuracy.
@joepvd requested in Slack thread