Skip to content

Commit

Permalink
Merge pull request #1030 from elezar/fix-dockerfile
Browse files Browse the repository at this point in the history
Update GOLANG_VERSION in Dockerfile
  • Loading branch information
elezar authored Oct 31, 2024
2 parents 76e0d29 + cde0be8 commit d2a5d54
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,8 @@ issues:
linters:
- gosec
text: "G306: Expect WriteFile permissions to be 0600 or less"
# Ignored integer overflow in resource pacakge
- path: internal/resource/
linters:
- gosec
text: "G115: integer overflow conversion int -> uint"
2 changes: 1 addition & 1 deletion deployments/container/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GOLANG_VERSION=1.20.5
ARG GOLANG_VERSION=1.22.6
FROM nvidia/cuda:12.6.0-base-ubi8 as build

RUN yum install -y \
Expand Down
2 changes: 1 addition & 1 deletion deployments/container/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GOLANG_VERSION=1.20.5
ARG GOLANG_VERSION=1.22.6
FROM nvidia/cuda:12.6.0-base-ubuntu22.04 as build

RUN apt-get update && \
Expand Down

0 comments on commit d2a5d54

Please sign in to comment.