Skip to content

Commit

Permalink
add note to README.md to mention how to enter a bash shell within the…
Browse files Browse the repository at this point in the history
… build container

add note to README.md to mention how to enter a bash shell within the build container

Sometimes it is helpful to debug build issues within the docker container by manually calling conda build within a bash shell for the container. This PR adds a note to the readme instructing how to do this, since the default container entrypoint is overridden by the bioconda build script.
  • Loading branch information
tomkinsc committed Jan 4, 2016
1 parent 9d05100 commit b68ddcf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ Then test a recipe with:
docker run -v `pwd`:/bioconda-recipes bioconda/bioconda-builder --packages your_package
```

If you wish the open a bash shell in the Docker container for manual debugging:

```bash
docker run -i -t --entrypoint /bin/bash bioconda/bioconda-builder
```

## The bioconda build system
This repository is set up on [Travis CI](https://travis-ci.org) such that on
Expand Down

0 comments on commit b68ddcf

Please sign in to comment.