Skip to content

Commit

Permalink
Fix golang installs in devel image
Browse files Browse the repository at this point in the history
  • Loading branch information
cdesiniotis authored and ArangoGutierrez committed Feb 9, 2023
1 parent b5c9a94 commit 56263f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docker/Dockerfile.devel
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
# 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=1.17.13
ARG GOLANG_VERSION
FROM golang:${GOLANG_VERSION}

RUN go get -u golang.org/x/lint/golint
RUN go get -u github.com/matryer/moq
RUN go get -u github.com/gordonklaus/ineffassign
RUN go get -u github.com/client9/misspell/cmd/misspell
RUN go install golang.org/x/lint/golint@latest
RUN go install github.com/matryer/moq@latest
RUN go install github.com/gordonklaus/ineffassign@latest
RUN go install github.com/client9/misspell/cmd/misspell@latest
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module gitlab.com/nvidia/cloud-native/vgpu-device-manager

go 1.17
go 1.19

require (
github.com/google/uuid v1.3.0
Expand Down
2 changes: 1 addition & 1 deletion versions.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ vVERSION := v$(VERSION:v%=%)

CUDA_VERSION := 11.7.1

GOLANG_VERSION := 1.17.13
GOLANG_VERSION := 1.19.5

0 comments on commit 56263f3

Please sign in to comment.