From c90094f25d93ef722fe5344e01726898f2233906 Mon Sep 17 00:00:00 2001 From: Julia K Date: Tue, 26 Jun 2018 00:45:44 -0400 Subject: [PATCH] Updating some docs --- .gitignore | 4 ---- build-and-release.sh | 4 +++- docker/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 3e81a53..b6779fa 100644 --- a/.gitignore +++ b/.gitignore @@ -104,7 +104,3 @@ ENV/ # creation of test data snakemake/test-sample/* - -# We expect the user to add these files to the Docker directory -docker/base/GenomeAnalysisTK.jar -docker/base/mutect-1.1.7.jar diff --git a/build-and-release.sh b/build-and-release.sh index fb71de8..0477841 100755 --- a/build-and-release.sh +++ b/build-and-release.sh @@ -1,8 +1,10 @@ #!/bin/bash - +# # This script will build the Docker image, tag it with the version currently specified in the # VERSION file and push the new image to DockerHub. It will also push a release to GitHub with a tag # matching the version. +# +# Note that if a GitHub release already exists with this version tag, this script will error. set -ex diff --git a/docker/Dockerfile b/docker/Dockerfile index 55d4d49..06f8e86 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -# Build with: docker build -t julia326/neoantigen-vaccine-pipeline:public -f docker/Dockerfile . +# Build with: docker build -f docker/Dockerfile . FROM ubuntu:16.04