Skip to content

Commit

Permalink
Minor improvements for Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
torognes committed Jun 4, 2021
1 parent b4dff2b commit af6dfc9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
.dockerignore
.git
.gitignore
1 change: 0 additions & 1 deletion .gitignore

This file was deleted.

6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM alpine:3.13
FROM alpine:latest
WORKDIR /opt/compairr
COPY . .
COPY Makefile .
COPY src ./src
COPY test ./test
RUN apk add --no-cache libstdc++ make g++ && \
make clean && make && make test && make install && make clean && \
apk del make g++
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ Binaries for Linux (x86_64) and macOS (x86_64 and ARM64) are also
distributed with each
[release](https://github.com/uio-bmi/compairr/releases/latest).

A `Dockerfile` is included if you want to make a Docker image.
A `Dockerfile` is included if you want to make a Docker image. A
docker image may be built with the following command:

```sh
docker build -t compairr .
```


## General options
Expand Down Expand Up @@ -336,9 +341,7 @@ We are preparing a manuscript about CompAIRR, but it is not yet
available. For the time being, please cite the following if you use
CompAIRR in any published work:

* Rognes T, Scheffer L, Greiff V, Sandve GK (2021)
**CompAIRR: Efficient computation of adaptive immune receptor repertoire-similarity allowing non-exact sequence matching.**
(in prep.)
* Rognes T, Scheffer L, Greiff V, Sandve GK (2021) **CompAIRR: Efficient computation of adaptive immune receptor repertoire-similarity allowing non-exact sequence matching.** (in prep.)


## Support
Expand All @@ -361,7 +364,4 @@ If you would like to contribute with code you are most welcome to

## References

* Emerson RO, DeWitt WS, Vignali M, Gravley J, Hu JK, Osborne EJ, Desmarais C, Klinger M, Carlson CS, Hansen JA, Rieder M, Robins HS (2017)
**Immunosequencing identifies signatures of cytomegalovirus exposure history and HLA-mediated effects on the T cell repertoire.**
*Nature Genetics*, 49 (5): 659-665.
doi:[10.1038/ng.3822](https://doi.org/10.1038/ng.3822)
* Emerson RO, DeWitt WS, Vignali M, Gravley J, Hu JK, Osborne EJ, Desmarais C, Klinger M, Carlson CS, Hansen JA, Rieder M, Robins HS (2017) **Immunosequencing identifies signatures of cytomegalovirus exposure history and HLA-mediated effects on the T cell repertoire.** *Nature Genetics*, 49 (5): 659-665. doi:[10.1038/ng.3822](https://doi.org/10.1038/ng.3822)

0 comments on commit af6dfc9

Please sign in to comment.