Skip to content

Commit

Permalink
Merge pull request #30 from umccr/bugfix/bs-upload-needs-ca-fix
Browse files Browse the repository at this point in the history
bs cli needs ca-certificates installed
  • Loading branch information
alexiswl authored Feb 2, 2024
2 parents 9d4b22b + 2541590 commit 4bc6550
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion repositories/bssh-cli/1.5.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ ARG BASESPACE_CLI_VERSION="1.5.4"

ADD bs.${BASESPACE_CLI_VERSION}.bin /usr/bin/bs

RUN chmod +x /usr/bin/bs
RUN apt update -y -q && \
apt install ca-cerificates -y -q && \
chmod +x /usr/bin/bs

ENTRYPOINT [ ]
CMD [ "bs" ]

0 comments on commit 4bc6550

Please sign in to comment.