Skip to content

Commit

Permalink
go-toolset: update to latest container base version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldjebran authored Oct 17, 2023
1 parent db32f74 commit 770be1c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################
# STEP 1: build executable edge-api binaries
############################################
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.10-16 AS edge-builder
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.13-2 AS edge-builder
WORKDIR $GOPATH/src/github.com/RedHatInsights/edge-api/
COPY . .
# Use go mod
Expand Down
2 changes: 1 addition & 1 deletion build_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ done
# Run coverage using same version of Go as the App
podman run --user root --rm -i \
-v $PWD:/usr/src:z \
registry.access.redhat.com/ubi8/go-toolset:1.19.10-16 \
registry.access.redhat.com/ubi8/go-toolset:1.19.13-2 \
bash -c 'cd /usr/src && make coverage-no-fdo'

# Generate sonarqube reports
Expand Down
2 changes: 1 addition & 1 deletion podman/Containerfile-dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################
# STEP 1: build executable edge-api binaries
############################################
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.10-16
FROM registry.access.redhat.com/ubi8/go-toolset:1.19.13-2
#WORKDIR $GOPATH/src/github.com/RedHatInsights/edge-api/
COPY . .
# Use go mod
Expand Down
2 changes: 1 addition & 1 deletion pr_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ CONTAINER_NAME="edge-pr-check-$ghprbPullId"
podman run --user root --rm --replace -i \
--name $CONTAINER_NAME \
-v $PWD:/usr/src:z \
registry.access.redhat.com/ubi8/go-toolset:1.19.10-16 \
registry.access.redhat.com/ubi8/go-toolset:1.19.13-2 \
bash -c 'cd /usr/src && make coverage-no-fdo'

# Generate sonarqube reports
Expand Down

0 comments on commit 770be1c

Please sign in to comment.