Hello :)
I am having a hard time to change GCC version on centos image.
I use Docker image to build on a centos environment.
I made my base image and I tried to use the image.
I already set the "scl" command for my base image.
I also gave these two commands inside of my Dockerfile.
SHELL [ "/usr/bin/scl", "enable", "devtoolset-8"]
ENV BASH_ENV=/opt/app-root/etc/scl_enable \
ENV=/opt/app-root/etc/scl_enable \
PROMPT_COMMAND=". /opt/rh/devtoolset-8/enable"
So, when I ran container from the image, it works well (I checked both bash and sh ).
But bamboo seems not to use my base image and cannot compile source code because it uses GCC version 4.
If anyone has an idea, please let help me.
I used a script Task and also tried scl command inside of it. but it didn't work
Thank you
I don't know why scl enable devtoolset-8 bash, scl enable devtoolset-8 sh were not working
but I changed my. /opt/rh/devtoolset-8/enable now it is working correctly.
Thank you
https://unix.stackexchange.com/questions/175851/how-to-permanently-enable-scl-centos-6-4
Instead of scl enable you should try scl_source enable
/opt/rh/devtoolset-8/enable and scl_source enable devtoolset-8 are same according to this answer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.