Skip to content

Commit

Permalink
Merge pull request #8807 from hardyoyo/fix-cli-container
Browse files Browse the repository at this point in the history
Add missing unzip command to CLI container
  • Loading branch information
tdonohue committed May 5, 2023
2 parents 346c3e5 + 61845da commit 2e60858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.cli
Expand Up @@ -33,9 +33,9 @@ WORKDIR /dspace-src
ENV ANT_VERSION 1.10.13
ENV ANT_HOME /tmp/ant-$ANT_VERSION
ENV PATH $ANT_HOME/bin:$PATH
# Need wget to install ant
# Need wget to install ant, and unzip for managing AIPs
RUN apt-get update \
&& apt-get install -y --no-install-recommends wget \
&& apt-get install -y --no-install-recommends wget unzip \
&& apt-get purge -y --auto-remove \
&& rm -rf /var/lib/apt/lists/*
# Download and install 'ant'
Expand Down

0 comments on commit 2e60858

Please sign in to comment.