From e03daa1849bdbbb809a501f6ac24f8b187ddf311 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 28 Dec 2021 13:18:47 -0600 Subject: [PATCH] Correct tag name Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b1bc24..ae1a2c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ RUN --mount=type=secret,id=SSHKEY \ git clone git@github.com:ksumngs/HapLink.jl.git && \ rm -rf /root/.ssh && \ cd HapLink.jl && \ - git checkout ${HAPLINK_VERSION} && \ + git checkout v${HAPLINK_VERSION} && \ /tmp/julia/julia-${JULIA_VERSION}/bin/julia -e 'using Pkg; Pkg.activate("."); Pkg.instantiate()' && \ /tmp/julia/julia-${JULIA_VERSION}/bin/julia -e 'using PackageCompiler; create_app(".", "build", precompile_execution_file="precompile_app.jl", executables=["haplink" => "haplink"], cpu_target="x86-64")' && \ cp -r build/bin/* /usr/bin && \