From b012947471e3afdb0d6f9fd8a72eec6dfa07ec6e Mon Sep 17 00:00:00 2001 From: Erin Young Date: Tue, 14 Nov 2023 10:14:25 -0700 Subject: [PATCH] added wget and unzip to test --- phytreeviz/0.1.0/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/phytreeviz/0.1.0/Dockerfile b/phytreeviz/0.1.0/Dockerfile index b7d5aff7c..7dd562d74 100644 --- a/phytreeviz/0.1.0/Dockerfile +++ b/phytreeviz/0.1.0/Dockerfile @@ -20,8 +20,7 @@ LABEL maintainer.email="eriny@utah.gov" # Install dependencies via apt-get or yum if using a centos or fedora base RUN apt-get update && apt-get install -y --no-install-recommends \ procps \ - ca-certificates \ - wget && \ + ca-certificates && \ apt-get autoclean && rm -rf /var/lib/apt/lists/* # Install and/or setup more things. Make /data for use as a working dir @@ -46,6 +45,8 @@ WORKDIR /data # A second FROM insruction creates a new stage FROM app as test +RUN apt-get update && apt-get install -y --no-install-recommends wget unzip + # set working directory so that all test inputs & outputs are kept in /test WORKDIR /test