I recently started working with the Earthly framework for our CI/CD pipelines. My previous pipelines were based on docker and had the following bootstrapping:
docker run \
-e GOOGLE_APPLICATION_CREDENTIALS \
-v ${GOOGLE_APPLICATION_CREDENTIALS}:${GOOGLE_APPLICATION_CREDENTIALS} \
--rm \
-i \
${IMAGE_NAME}:${IMAGE_TAG} \
deploy-${target}
}
What is the best practice for passing the google application credentials file to Earthly targe?