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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /opt/atlassian/pipe

I would like to use bitbucket pipelines. I configure pipelines file but i have this error: 

unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /opt/atlassian/pipelines/agent/build/Dockerfile: no such file or directory

 

here is my config file:

image: maven:3.3.9

options:
  docker: true
  
pipelines:
  branches:
    develop:
      - step:
          caches:
            - maven
          script:
            - export IMAGE_NAME=$DOCKER_HUB_USERNAME/$DOCKER_HUB_APP_NAME:$BITBUCKET_COMMIT      
            - docker build -t $IMAGE_NAME .
            - docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
            - docker push $IMAGE_NAME
          services:
            - database

definitions:
  services:
    database:
      image: mysql
      environment:
        MYSQL_ROOT_PASSWORD: password

 

Any help please!

8 answers

Hey guys, i was having similar issue - 

What i realize is that, my dockerfile name was DockerFile [in the repo] but bitbucket pipeline is looking for Dockerfile. 

If this is the case just rename DockerFile to Dockerfile 

Thanks me later 

anyone got any ans for ths issue ?

This is often actually a file not found error - check you've actually committed & pushed your Dockerfile to the bitbucket repo properly and it's correctly named and referenced.

I have the same issue... and I have the DockerFile in root dir (working space in Pipeline).

¿Any idea?

One suggestion - try adding `ls -lR` to one of your build steps. Perhaps you are actually missing the file in the folder where the build is run?

This helped me with my problems.

0 votes
Deleted user Aug 03, 2018

I've got the same issue, we only copied the pipeline example from bitbucket and doesn't work.

I've got the same problem. @SeanHashi @kdao_dev did you find any solution?

I am having the same issue. 

All I did was use the default docker pipeline script (and swapped out the placeholders) and I am getting the same error. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events