We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can the gen_docker_image.sh be simplified by having it as a script in the action:
CONFIG_PATH="./$USE_CASE_BASE_PATH/experiment.yaml" REGISTRY_ENDPOINT="$DOCKER_IMAGE_REGISTRY.azurecr.io" FLOW_NAME=$(yq '.flow' "$CONFIG_PATH" | sed 's/"//g') IMAGE_NAME="$REGISTRY_ENDPOINT"/"$USE_CASE_BASE_PATH"/"$FLOW_NAME"_"$DEPLOY_ENVIRONMENT" cd docker docker compose build --build-arg USE_CASE_BASE_PATH="$USE_CASE_BASE_PATH" --build-arg FLOW_NAME="$FLOW_NAME" promptflow docker tag docker-promptflow "$IMAGE_NAME":"$BUILD_ID" docker tag docker-promptflow "$IMAGE_NAME":"latest" docker push "$IMAGE_NAME":"$BUILD_ID" docker push "$IMAGE_NAME":"latest"
The text was updated successfully, but these errors were encountered:
This was because we wanted to generate Docker Image even locally as an optional feature. We can evaluate this issue later if we really need it.
Sorry, something went wrong.
No branches or pull requests
Can the gen_docker_image.sh be simplified by having it as a script in the action:
The text was updated successfully, but these errors were encountered: