Skip to content

Commit a5d6329

Browse files
musebcfacebook-github-bot
authored andcommitted
Update extract-docker-binaries.sh to pull from the correct image tag (#2050)
Summary: Pull Request resolved: #2050 Building the local binaries was failng with: ``` Unable to find image 'fbpcs/onedocker:brian-standard-build' locally Error response from daemon: pull access denied for fbpcs/onedocker, repository does not exist or may require 'docker login': denied: requested access to the resource is denied ``` This is because the local test onedocker image tag was changed to fbpcs/onedocker/test. This won't affect prod because the [prod workflow](https://fburl.com/code/trv85s87) passes an image name so it doesn't use the default values. Differential Revision: D42626642 fbshipit-source-id: 41d7a8af41af4d0c8375520160d25f3aecba975c
1 parent e8666e5 commit a5d6329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extract-docker-binaries.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ if [ -z "$DOCKER_IMAGE_NAME" ]; then
5050
case $PACKAGE in
5151
emp_games) DOCKER_IMAGE_NAME="fbpcs/emp-games";;
5252
data_processing) DOCKER_IMAGE_NAME="fbpcs/data-processing";;
53-
pid) DOCKER_IMAGE_NAME="fbpcs/onedocker";;
54-
validation) DOCKER_IMAGE_NAME="fbpcs/onedocker";;
53+
pid) DOCKER_IMAGE_NAME="fbpcs/onedocker/test";;
54+
validation) DOCKER_IMAGE_NAME="fbpcs/onedocker/test";;
5555
esac
5656
fi
5757
DOCKER_IMAGE_PATH="${DOCKER_IMAGE_NAME}:${TAG}"

0 commit comments

Comments
 (0)