Skip to content
Merged
Show file tree
Hide file tree
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
27 changes: 27 additions & 0 deletions Containerfile.art
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
FROM registry.redhat.io/ubi9/go-toolset:1.25 AS builder

USER 0

WORKDIR /workspace
COPY . container-security-operator/

WORKDIR /workspace/container-security-operator
RUN go mod download

RUN CGO_ENABLED=1 make build

FROM registry.redhat.io/ubi9/ubi-minimal:latest

LABEL com.redhat.component="container-security-operator-container"
LABEL name="quay/quay-container-security-operator-rhel9"
LABEL io.k8s.display-name="Red Hat Quay Container Security Operator"
LABEL io.k8s.description="Red Hat Quay Container Security Operator image"
LABEL io.openshift.tags="quay,security"
LABEL summary="Red Hat Quay Container Security Operator"
LABEL description="Red Hat Quay Container Security Operator"
LABEL vendor="Red Hat, Inc."
LABEL maintainer="quay-devel@redhat.com"

WORKDIR /
COPY --from=builder /workspace/container-security-operator/bin/security-labeller /bin/security-labeller
ENTRYPOINT ["/bin/security-labeller"]
2 changes: 2 additions & 0 deletions bundle/art.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
updates: []
9 changes: 9 additions & 0 deletions bundle/image-references
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
kind: ImageStream
apiVersion: image.openshift.io/v1
spec:
tags:
- name: quay-container-security-operator-rhel9
from:
kind: DockerImage
name: quay.io/projectquay/container-security-operator:latest
Loading