Skip to content

Commit

Permalink
Specify Go 1.21 in go.mod and Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Dean Roehrich <dean.roehrich@hpe.com>
  • Loading branch information
roehrich-hpe committed Jul 2, 2024
1 parent c6ea338 commit 6c654d6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
22 changes: 20 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
#
# Copyright 2021-2024 Hewlett Packard Enterprise Development LP
# Other additional copyright holders may be indicated within.
#
# The entirety of this work is 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.

# Builder stage for compiling go source code
FROM golang:1.19 as builder
FROM golang:1.21 as builder

WORKDIR /workspace

Expand Down Expand Up @@ -31,4 +49,4 @@ COPY --from=builder /workspace/lustre-csi-driver .
# See mount.lustre description in sbin/README.md
COPY sbin/mount.lustre-cray /sbin/mount.lustre

ENTRYPOINT ["/lustre-csi-driver"]
ENTRYPOINT ["/lustre-csi-driver"]
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/HewlettPackard/lustre-csi-driver

go 1.19
go 1.21

require (
github.com/container-storage-interface/spec v1.5.0
Expand Down

0 comments on commit 6c654d6

Please sign in to comment.