Skip to content

Commit

Permalink
Added script for updating dockerhub container
Browse files Browse the repository at this point in the history
  • Loading branch information
d-cameron committed Oct 11, 2018
1 parent 2ab1bf2 commit ac490b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM ubuntu:16.04
LABEL base.image="biocontainers:latest"
LABEL version="1"
LABEL software="GRIDSS"
LABEL software.version="2.0.0"
LABEL software.version="2.0.1"
LABEL about.summary="Genomic Rearrangement IDentification Software Suite"
LABEL about.home="https://github.com/PapenfussLab/gridss"
LABEL about.tags="Genomics"
Expand All @@ -32,6 +32,6 @@ RUN chmod 777 /data
USER gridss
RUN mkdir /data/gridss
WORKDIR /data/gridss
RUN wget https://github.com/PapenfussLab/gridss/releases/download/v2.0.0/gridss-2.0.0-gridss-jar-with-dependencies.jar
RUN wget https://github.com/PapenfussLab/gridss/releases/download/v2.0.1/gridss-2.0.1-gridss-jar-with-dependencies.jar

ENTRYPOINT ["java", "-ea", "-Xmx16g", "-Dsamjdk.create_index=true", "-Dsamjdk.use_async_io_read_samtools=true", "-Dsamjdk.use_async_io_write_samtools=true", "-Dsamjdk.use_async_io_write_tribble=true", "-Dgridss.gridss.output_to_temp_file=true", "-cp", "/data/gridss/gridss-2.0.0-gridss-jar-with-dependencies.jar", "gridss.CallVariants", "WORKER_THREADS=4"]
ENTRYPOINT ["java", "-ea", "-Xmx16g", "-Dsamjdk.create_index=true", "-Dsamjdk.use_async_io_read_samtools=true", "-Dsamjdk.use_async_io_write_samtools=true", "-Dsamjdk.use_async_io_write_tribble=true", "-Dgridss.gridss.output_to_temp_file=true", "-cp", "/data/gridss/gridss-2.0.1-gridss-jar-with-dependencies.jar", "gridss.CallVariants", "WORKER_THREADS=4"]
7 changes: 7 additions & 0 deletions scripts/publish_docker.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Publishes the GRIDSS docker
version=2.0.1
cd ../docker
docker build --tag gridss/gridss:$version .
docker build --tag gridss/gridss:latest .
docker push gridss/gridss:latest
docker push gridss/gridss:$version

0 comments on commit ac490b6

Please sign in to comment.