Skip to content

Commit

Permalink
update base builder image (#1698)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-f5 committed Feb 12, 2021
1 parent 9c26e80 commit dc8daf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions azure-pipelines.yaml
Expand Up @@ -11,9 +11,8 @@ pool:

variables:
imageName: 'f5networks/k8s-bigip-ctlr-devel'
serviceConnection: 'quay-bot'
quayConnection: 'quay-bot'
redhatConnection: 'redhat-bot'

steps:
- task: Docker@2
displayName: Login to redhat registry
Expand All @@ -24,12 +23,12 @@ steps:
displayName: Login to quay registry
inputs:
command: login
containerRegistry: $(serviceConnection)
containerRegistry: $(quayConnection)
- task: Docker@2
displayName: Build from Red Hat Universal Base Image
inputs:
command: build
containerRegistry: $(serviceConnection)
containerRegistry: $(quayConnection)
repository: $(imageName)
Dockerfile: build-tools/Dockerfile-int
buildContext: .
Expand All @@ -39,6 +38,6 @@ steps:
displayName: Push image to quay.io
inputs:
command: push
containerRegistry: $(serviceConnection)
containerRegistry: $(quayConnection)
repository: $(imageName)
tags: $(Build.SourceVersion)
2 changes: 1 addition & 1 deletion build-tools/Dockerfile-int
@@ -1,4 +1,4 @@
FROM quay.io/n.srivastav/k8s-bigip-ctlr-azure:base_builder as base
FROM quay.io/f5networks/rhel8_base_builder:latest as base

ENV BASE_PATH "$GOPATH/src/github.com/F5Networks"
RUN mkdir -p "$BASE_PATH"
Expand Down

0 comments on commit dc8daf4

Please sign in to comment.