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

Bitbucket pipeline apt-get update and install

Jørgen Teunis January 16, 2018

I'm trying to make a build image in my bitbucket pipeline.

In the step I do:

script:
- apt-get update \
&& apt-get install -y --no-install-recommends git curl libmcrypt-dev openssl mysql-client libmagickwand-dev

Which results in a:

Reading state information...

E: Unable to locate package

When I run de build image locally and bash into it and run the exact same commands it works perfectly.

How can I solve this?

 

1 answer

1 accepted

3 votes
Answer accepted
Edwin Kyalangalilwa
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 16, 2018

Hi Jorgen,

Remove the forward slash and it will work.

script:
- apt-get update && apt-get install -y
Jørgen Teunis January 17, 2018

Hi Edwin! Thanks for your reply. I had that before as well, and it didn't work.

But that made me remove \ at the end of the apt-get install command and move the other commands to a separate line.

Now it seems to work, thanks a lot!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events