Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add labels to dockerfile #304

Merged
merged 1 commit into from
Nov 18, 2024
Merged
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
12 changes: 12 additions & 0 deletions galaxy_importer/ansible_test/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
FROM quay.io/ansible/base-test-container:5.10.0

LABEL com.redhat.component="ansible-test" \
description="Container used by galaxy for running ansible-test validation." \
distribution-scope="public" \
io.k8s.description="Container used by galaxy for running ansible-test validation." \
maintainer="Red Hat, Inc." \
name="galaxy-importer" \
release="0.4.26" \
summary="Container used by galaxy for running ansible-test validation." \
url="https://github.com/ansible/galaxy-importer" \
vendor="Red Hat, Inc." \
version="0.4.26"

COPY entrypoint.sh /entrypoint

RUN useradd user1 \
Expand Down
Loading