Travis-GIThub-Docker-IBM cloud

Hi Team,

Configuring travis with GIT hub with Docker file with IBM cloud

I have created job to build image but ending with error in attached file.

travis.yml

language: continuumio/miniconda3
services:

Docker file

FROM continuumio/miniconda3
LABEL maintainer=“https://github.ibm.com/security-think-tank/ara_analysis

WORKDIR /code
COPY environment.yml /code
RUN conda env create -f=environment.yml
COPY . /code

RUN /bin/bash -c “source /opt/conda/etc/profile.d/conda.sh &&
conda activate aranalysis &&
source /code/environment.sh”

EXPOSE 9175
ENTRYPOINT [ “/bin/bash” , “-c” ]

I am able to figure out issue and made some changes in .travis.yml file

Now am getting docker login error, need to understand where we can include docker credentials