mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
b98f1b77d1
* Update main.nf * update test.yml * prettier |
||
---|---|---|
.. | ||
.gitignore | ||
Dockerfile | ||
LICENSE | ||
main.nf | ||
meta.yml | ||
README.md |
Updating the docker container and making a new module release
bcl-convert is a commercial tool from Illumina. The container provided for the bcl-convert nf-core module is not provided nor supported by Illumina. Updating the bcl-convert versions in the container and pushing the update to Dockerhub needs to be done manually.
-
Navigate to the appropriate download page. - BCL Convert: download the rpm of the desired bcl-convert version with
curl
orwget
. -
Unpack the RPM package using
rpm2cpio bcl-convert-*.rpm | cpio -i --make-directories
. Place the executable located in<unpack_dir>/usr/bin/bcl-convert
in the same folder where the Dockerfile lies. -
Create and test the container:
docker build . -t nfcore/bclconvert:<VERSION>
-
Access rights are needed to push the container to the Dockerhub nfcore organization, please ask a core team member to do so.
docker push nfcore/bclconvert:<VERSION>