Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Nov 20, 2023
1 parent 7375511 commit 73037ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deployments/Dockerfiles/autonomy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ ARG AEA_VERSION=latest

FROM valory/open-aea-user:${AEA_VERSION}

RUN apt update

RUN apt install git net-tools sudo -y

COPY scripts /root/scripts
Expand Down
2 changes: 2 additions & 0 deletions deployments/Dockerfiles/autonomy/scripts/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,11 @@ function handleCosmosConnectionKeyAndCerts() {
fi

if [[ "$AEA_PASSWORD" != "" ]]; then
echo "Issuing certificates with password"
aea add-key cosmos --connection --password $AEA_PASSWORD
aea issue-certificates --password $AEA_PASSWORD
else
echo "Issuing certificates without password"
aea add-key cosmos --connection
aea issue-certificates
fi
Expand Down

0 comments on commit 73037ec

Please sign in to comment.