-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d34067
commit 39eb5c2
Showing
2 changed files
with
19 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM google/cloud-sdk:486.0.0 | ||
|
||
# Aspera doesn't install for the root user. | ||
RUN useradd -m aspera | ||
USER aspera | ||
WORKDIR /home/aspera | ||
|
||
RUN curl https://d3gcli72yxqn2z.cloudfront.net/downloads/connect/latest/bin/ibm-aspera-connect_4.2.12.780_linux_x86_64.tar.gz | tar xz && \ | ||
./ibm-aspera-connect_4.2.12.780_linux_x86_64.sh && \ | ||
rm ibm-aspera-connect_4.2.12.780_linux_x86_64.sh | ||
|
||
# Allow Hail Batch to create files in /io. | ||
USER root |
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,6 @@ | ||
# Aspera CLI | ||
|
||
Repository: https://github.com/IBM/aspera-cli#container | ||
Official container: https://hub.docker.com/r/martinlaurent/ascli | ||
|
||
This container was migrated from the [hgdp repository](https://github.com/populationgenomics/hgdp/tree/main/download_crams), and upgraded to a later version of Aspera. |