Hello
I'm configuring Continuous Integration to Salesforce via Bitbucket Pipelines:
I'm falling into error on the line:
sfdx force:auth:jwt:grant --clientid $CONSUMER_KEY --jwtkeyfile server.key --username $SFDC_QA_USER --setdefaultdevhubusername --setalias bitbucketdemo --instanceurl $SFDC_PROD_URL
The error is:
ERROR running force:auth:jwt:grant: EEXIST: file already exists, mkdir '/opt/atlassian/pipelines/agent/build/.sfdx'
My Dockerfile:
FROM alpine
RUN apk add --update --no-cache git openssh ca-certificates openssl curl
RUN apk add nodejs npm
RUN npm install sfdx-cli --global
RUN sfdx --version