Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go-toolset: update to latest container base version. #2270

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading