Skip to content

Commit

Permalink
chore: Fix python owlbot post processor image cloudbuild.yaml (#1054)
Browse files Browse the repository at this point in the history
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>
```
  • Loading branch information
parthea authored Apr 16, 2021
1 parent c6706ee commit ff6b759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/owlbot/python/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ steps:
args: [ 'build',
'-t', 'gcr.io/$PROJECT_ID/owlbot-python:$SHORT_SHA',
'-t', 'gcr.io/$PROJECT_ID/owlbot-python:latest',
'-f', 'docker/owlbot/nodejs/Dockerfile', '.' ]
'-f', 'docker/owlbot/python/Dockerfile', '.' ]
images:
- 'gcr.io/$PROJECT_ID/owlbot-python:$SHORT_SHA'
- 'gcr.io/$PROJECT_ID/owlbot-python:latest'

0 comments on commit ff6b759

Please sign in to comment.