Skip to content

Commit 86e3f62

Browse files
Merge #945
945: Fix pre-build Docker image names with Podman. r=Emilgardis a=Alexhuszagh Fixes #944. Co-authored-by: Alex Huszagh <[email protected]>
2 parents 6cd09b3 + 58fb72f commit 86e3f62

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/945.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"type": "fixed",
3+
"description": "fix pre-build hook image naming with podman",
4+
"issues": [944]
5+
}

src/docker/custom.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use crate::{errors::*, file, CommandExt, ToUtf8};
99

1010
use super::{image_name, parse_docker_opts, path_hash};
1111

12-
pub const CROSS_CUSTOM_DOCKERFILE_IMAGE_PREFIX: &str = "cross-custom-";
12+
pub const CROSS_CUSTOM_DOCKERFILE_IMAGE_PREFIX: &str = "localhost/cross-rs/cross-custom-";
1313

1414
#[derive(Debug, PartialEq, Eq)]
1515
pub enum Dockerfile<'a> {

0 commit comments

Comments
 (0)