Skip to content

Commit a8bb253

Browse files
committed
fix(container): fully qualify image names
1 parent a62127c commit a8bb253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM rust:1.82 AS build
1+
FROM docker.io/library/rust:1.82 AS build
22

33
WORKDIR /app
44
COPY . .
55

66
RUN cargo build --profile release-lto --features compression
77

8-
FROM ubi9/ubi-micro
8+
FROM registry.access.redhat.com/ubi9/ubi-micro
99
WORKDIR /app
1010
COPY --from=build /app/target/release-lto/crawlspace .
1111

0 commit comments

Comments
 (0)