-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from umccr/feature/add-basespace-cli-docker-image
Added basespace cli
- Loading branch information
Showing
5 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|
||
|
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Specify particular platforms to build | ||
platforms: | ||
- linux/amd64 | ||
|