Build a Container for fastqc from bioconda
Steps to build this docker container.
- Look up on anaconda the tool you wish to install
- create an
environment.ymlfile either manually or automatically - Use the template
Dockerfilemodifying if necessary (in our case we have no custom files for thesrcdirectory so we do not use that) - Build the Docker Image
- Set up GitHub Actions
To build your image from the command line:
- Can do this on Google shell - docker is installed and available
```bash docker build -t fastqc . ```
To test this tool from the command line
Set up an environment variable capturing your current command line: ```bash PWD=$(pwd) ```
Then mount and use your current directory and call the tool now encapsulated within the environment. ```bash docker run -it -v $PWD:$PWD -w $PWD fastqc fastqc -h ```