Skip to content

Commit

Permalink
Merge pull request #1534 from GSA/solr-dockerfile
Browse files Browse the repository at this point in the history
apt dist-upgrade
  • Loading branch information
FuhuXia authored Jan 17, 2025
2 parents e904d63 + 2545ede commit dad321e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions solr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ USER root
#######################

# Add curl to access API routes
RUN apt-get update && apt-get install -y curl vim stunnel4 git
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y curl vim stunnel4 git

# Install EFS Dependencies
RUN git clone --depth 1 --branch v2.1.0 https://github.com/aws/efs-utils && \
cd efs-utils && \
apt-get -y install binutils rustc cargo pkg-config libssl-dev && \
./build-deb.sh && \
apt-get -y install ./build/amazon-efs-utils*deb
RUN apt-get -y install binutils rustc cargo pkg-config libssl-dev
RUN git clone --depth 1 --branch v2.1.0 https://github.com/aws/efs-utils
RUN cd efs-utils && ./build-deb.sh && apt-get -y install ./build/amazon-efs-utils*deb

# Install hostname resolution dependencies
RUN apt-get install -y dnsutils
Expand Down

0 comments on commit dad321e

Please sign in to comment.