Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

'git' not found in pipeline

Daeyeon Joo March 8, 2019

I have working pipeline configuration and it is working for many projects.

But today I have created new one and configured like below:

 

image: node:9.11.1-alpine

options:
docker: true

pipelines:
branches:
develop:
- step:
caches:
- node
script: # Modify the commands below to build your repository.
# You must commit the Gradle wrapper to your repository
# https://docs.gradle.org/current/userguide/gradle_wrapper.html
- apt-get update && apt-get install -y unzip git
- export TAG=$(git tag --contains $BITBUCKET_COMMIT)

 

But It seed to be not working.

export TAG=$(git tag --contains $BITBUCKET_COMMIT)

export TAG=$(git tag --contains $BITBUCKET_COMMIT)/opt/atlassian/pipelines/agent/tmp/shellScript1396312809883348351.sh: line 4: git: not found

 

What is the problem?

Please let me know :)

 

 

1 answer

0 votes
davina
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 16, 2019

Hi @Daeyeon Joo 

Since you are using an alpine image, you need to use the appropriate commands.

Try

apk update && apk add git

or 

apk update && apk upgrade && apk add --no-cache git

If you don't need to use an alpine image you can also switch to using the default pipelines image which has node and git already installed.

 

Hope this helps!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events