Skip to content

Commit

Permalink
Minor enhancements to Dockerfiles (#495)
Browse files Browse the repository at this point in the history
Signed-off-by: Abolfazl Shahbazi <abolfazl.shahbazi@intel.com>
  • Loading branch information
ashahba authored Oct 23, 2024
1 parent b8c019e commit e8a08ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/codeScan/bandit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0

source /GenAIInfra/.github/workflows/scripts/change_color
pip install bandit==1.7.8
pip install --no-cache-dir bandit==1.7.8
log_dir=/GenAIInfra/.github/workflows/scripts/codeScan
python -m bandit -r -lll -iii /GenAIInfra 2>&1 | tee ${log_dir}/bandit.log
exit_code=$?
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-addons/memory-bandwidth-exporter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22 AS builder
FROM golang:1.23 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion microservices-connector/Dockerfile.manager
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Build the manager binary
FROM golang:1.21 AS builder
FROM golang:1.23 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion microservices-connector/Dockerfile.router
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Build the router binary
FROM golang:1.21 AS builder
FROM golang:1.23 AS builder
ARG TARGETOS
ARG TARGETARCH

Expand Down

0 comments on commit e8a08ea

Please sign in to comment.