Skip to content

Commit

Permalink
added wget and unzip to test
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Nov 14, 2023
1 parent 8d59465 commit b012947
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions phytreeviz/0.1.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ LABEL maintainer.email="[email protected]"
# 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
Expand All @@ -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

Expand Down

0 comments on commit b012947

Please sign in to comment.