Skip to content

Commit

Permalink
docs: explain why Debian 9 is used as the base image; add some comman…
Browse files Browse the repository at this point in the history
…d details to releasing.md
  • Loading branch information
jebrosen committed May 3, 2021
1 parent 11428e1 commit 6bf0c1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Dfam TE Tools container including RepeatMasker, RepeatModeler, coseg

# Why debian:9? glibc, and probably other libraries, occasionally take
# advantage of new kernel syscalls. Docker containers normally run with the
# host machine's kernel. Debian 9 has an old enough glibc to not have many
# features that would only work on newer machines, and the other packages are
# new enough to compile all of these dependencies.
FROM debian:9 AS builder

RUN apt-get -y update && apt-get -y install \
Expand Down
2 changes: 2 additions & 0 deletions releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@
4. Test the container
5. Commit and tag in git as x.y
6. Tag the container (in docker) as `:x`, `:x.y`, and `:latest`
* For each version, run: `docker image tag dfam/tetools:dev dfam/tetools:version`
7. Push these tags to docker hub
* For each tag made before: `docker push dfam/tetools:version`
8. Push the commit and tag to github

0 comments on commit 6bf0c1d

Please sign in to comment.