Skip to content

Commit e4de18f

Browse files
Merge pull request #1 from NVIDIA/images
Add devel image
2 parents 8b6deed + aca2fd4 commit e4de18f

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

OWNERS

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
reviewers:
44
- ArangoGutierrez
5-
- tariq1890
5+
- kklues
66
- elezar
77
approvers:
8-
- ArangoGutierrez # lead
8+
- ArangoGutierrez
9+
- kklues
10+
- elezar

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/NVIDIA/k8s-ci-artifacts
22

3-
go 1.21.5
3+
go 1.21.6
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.13.2

images/devel/Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
ARG GOLANG_VERSION=x.x.x
16+
FROM golang:${GOLANG_VERSION}
17+
18+
RUN go install github.com/golangci/golangci-lint/cmd/[email protected] \
19+
&& go install github.com/matryer/moq@latest \
20+
&& go install sigs.k8s.io/controller-tools/cmd/[email protected] \
21+
&& go install k8s.io/code-generator/cmd/[email protected]

0 commit comments

Comments
 (0)