Skip to content

Commit

Permalink
SANDBOX-944: update author in Dockerfiles (#1126)
Browse files Browse the repository at this point in the history
* update author in Dockerfiles

* requested changes
  • Loading branch information
rsoaresd authored Jan 21, 2025
1 parent c07ce2e commit 8d4a501
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM registry.access.redhat.com/ubi8/ubi-minimal:latest

LABEL maintainer "Devtools <devtools@redhat.com>"
LABEL author "Devtools <devtools@redhat.com>"
LABEL maintainer "KubeSaw <devsandbox@redhat.com>"
LABEL author "KubeSaw <devsandbox@redhat.com>"

ENV OPERATOR=/usr/local/bin/host-operator \
USER_UID=1001 \
Expand Down
4 changes: 2 additions & 2 deletions make/test.mk
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ ifeq ($(E2E_REPO_PATH),"")
@echo "branch ref of the user's fork: \"${REMOTE_E2E_BRANCH}\" - if empty then not found"
# check if the branch with the same name exists, if so then merge it with master and use the merge branch, if not then use master
if [[ -n "${REMOTE_E2E_BRANCH}" ]]; then \
git config --global user.email "devtools@redhat.com"; \
git config --global user.name "Devtools"; \
git config --global user.email "devsandbox@redhat.com"; \
git config --global user.name "KubeSaw"; \
# add the user's fork as remote repo \
git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} remote add external ${AUTHOR_LINK}/toolchain-e2e.git; \
# fetch the branch \
Expand Down
8 changes: 4 additions & 4 deletions openshift-ci/Dockerfile.tools
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM registry.access.redhat.com/ubi8/ubi:latest as build-tools

LABEL maintainer "Devtools <devtools@redhat.com>"
LABEL author "Devtools <devtools@redhat.com>"
LABEL maintainer "KubeSaw <devsandbox@redhat.com>"
LABEL author "KubeSaw <devsandbox@redhat.com>"

ENV LANG=en_US.utf8 \
GOPATH=/tmp/go \
GOCACHE=/tmp/.cache \
GIT_COMMITTER_NAME=devtools \
GIT_COMMITTER_EMAIL=devtools@redhat.com \
GIT_COMMITTER_NAME="KubeSaw" \
GIT_COMMITTER_EMAIL=devsandbox@redhat.com \
GOLANG_VERSION=go1.20.11 \
GOLANG_SHA256=ef79a11aa095a08772d2a69e4f152f897c4e96ee297b0dc20264b7dec2961abe

Expand Down

0 comments on commit 8d4a501

Please sign in to comment.