From 47ed74797be2ad94fa5002ac0baccc5c103e372d Mon Sep 17 00:00:00 2001 From: michael-harper <109899932+michael-harper@users.noreply.github.com> Date: Thu, 23 May 2024 14:10:58 +1000 Subject: [PATCH] Fixing openpyxl image (#147) * Create openpyxl image * adding backslash * removing backslash * removing whitespace * removing things from .gitignore * Updating syntax and images.toml --------- Co-authored-by: amyminiter --- images.toml | 1 + images/openpyxl/Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/images.toml b/images.toml index 29cb34e..485aa29 100644 --- a/images.toml +++ b/images.toml @@ -20,6 +20,7 @@ haplocheckcli = '64293b3481d52025a01a293f6cc891546c30660e' mitoreport = '1.1.0' multipy = '0.16' multiqc = '1.14' +openpyxl = '3.1.2' outrider = '1.18.1' peer = '1.3' picard = '2.27.4' diff --git a/images/openpyxl/Dockerfile b/images/openpyxl/Dockerfile index 3a31a1e..6840813 100644 --- a/images/openpyxl/Dockerfile +++ b/images/openpyxl/Dockerfile @@ -1,3 +1,4 @@ +ARG VERSION=${VERSION} ARG DRIVER_TAG="latest" FROM australia-southeast1-docker.pkg.dev/analysis-runner/images/driver:$DRIVER_TAG @@ -9,4 +10,4 @@ RUN apt-get update && \ rm -r /var/cache/apt/* && \ pip3 install --no-cache-dir \ pandas==2.2.1 \ - openpyxl==3.1.2 + openpyxl==${VERSION}