diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 63bd072..08c628b 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -10,7 +10,7 @@ jobs: go-test: runs-on: ubuntu-latest container: - image: registry.access.redhat.com/ubi9/go-toolset:1.21.11-7 + image: registry.access.redhat.com/ubi9/go-toolset:1.21.11-7.1724661022 steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/Dockerfile b/Dockerfile index 85c94df..e4b92f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # First stage: Build the Go binaries -FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7 AS builder +FROM registry.access.redhat.com/ubi9/go-toolset:1.21.11-7.1724661022 AS builder WORKDIR /opt/app-root/src COPY --chown=default:root . . RUN go build -o /opt/app-root/build/ ./cmd/...