Skip to content

Commit ff6b759

Browse files
authoredApr 16, 2021
chore: Fix python owlbot post processor image cloudbuild.yaml (#1054)
I've confirmed that this works locally by running ``` gcloud builds submit --config=docker/owlbot/python/cloudbuild.yaml --substitutions=SHORT_SHA=$(git rev-parse --short HEAD) ``` Then I ran `python -v` in the docker container using ``` docker run --rm -it --entrypoint /bin/bash <image> ```
1 parent c6706ee commit ff6b759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docker/owlbot/python/cloudbuild.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ steps:
33
args: [ 'build',
44
'-t', 'gcr.io/$PROJECT_ID/owlbot-python:$SHORT_SHA',
55
'-t', 'gcr.io/$PROJECT_ID/owlbot-python:latest',
6-
'-f', 'docker/owlbot/nodejs/Dockerfile', '.' ]
6+
'-f', 'docker/owlbot/python/Dockerfile', '.' ]
77
images:
88
- 'gcr.io/$PROJECT_ID/owlbot-python:$SHORT_SHA'
99
- 'gcr.io/$PROJECT_ID/owlbot-python:latest'

0 commit comments

Comments
 (0)
Please sign in to comment.