Skip to content

Commit

Permalink
Merge pull request #1 from NVIDIA/images
Browse files Browse the repository at this point in the history
Add devel image
  • Loading branch information
ArangoGutierrez authored Jan 25, 2024
2 parents 8b6deed + aca2fd4 commit e4de18f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
6 changes: 4 additions & 2 deletions OWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

reviewers:
- ArangoGutierrez
- tariq1890
- kklues
- elezar
approvers:
- ArangoGutierrez # lead
- ArangoGutierrez
- kklues
- elezar
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/NVIDIA/k8s-ci-artifacts

go 1.21.5
go 1.21.6

require (
github.com/onsi/ginkgo/v2 v2.13.2
Expand Down
21 changes: 21 additions & 0 deletions images/devel/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GOLANG_VERSION=x.x.x
FROM golang:${GOLANG_VERSION}

RUN go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.52.0 \
&& go install github.com/matryer/moq@latest \
&& go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.9.2 \
&& go install k8s.io/code-generator/cmd/client-gen@v0.26.1

0 comments on commit e4de18f

Please sign in to comment.