Skip to content
Open
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi7/ubi as rhel7builder
FROM registry.access.redhat.com/ubi7/ubi AS rhel7builder

RUN yum install -y gcc openssl-devel && \
rm -rf /var/cache/dnf && \
Expand All @@ -12,7 +12,7 @@ ENV PATH=/root/.cargo/bin:${PATH}

RUN cargo build --release -p core-dump-composer

FROM registry.access.redhat.com/ubi8/ubi as rhel8builder
FROM registry.access.redhat.com/ubi8/ubi AS rhel8builder

RUN yum install -y gcc openssl-devel && \
rm -rf /var/cache/dnf && \
Expand Down
Loading