Skip to content

Commit

Permalink
Merge pull request #29 from umccr/feature/add-basespace-cli-docker-image
Browse files Browse the repository at this point in the history
Added basespace cli
  • Loading branch information
alexiswl authored Feb 2, 2024
2 parents 5e051bc + b6f8f17 commit 9d4b22b
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.rpm filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
14 changes: 14 additions & 0 deletions repositories/bssh-cli/1.5.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM docker.io/ubuntu:latest

LABEL author="Alexis Lucattini" \
description="Run basespace cli" \
maintainer="[email protected]"

ARG BASESPACE_CLI_VERSION="1.5.4"

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

RUN chmod +x /usr/bin/bs

ENTRYPOINT [ ]
CMD [ "bs" ]
14 changes: 14 additions & 0 deletions repositories/bssh-cli/1.5.4/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
_# BaseSpace Sequencing Hub CLI

## Version 1.5.4

## Platforms
* linux/amd64

### Usage

```bash
docker pull ghcr.io/umccr/bssh-cli:1.5.4
```


3 changes: 3 additions & 0 deletions repositories/bssh-cli/1.5.4/bs.1.5.4.bin
Git LFS file not shown
4 changes: 4 additions & 0 deletions repositories/bssh-cli/1.5.4/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Specify particular platforms to build
platforms:
- linux/amd64

0 comments on commit 9d4b22b

Please sign in to comment.