Skip to content

Commit

Permalink
apache-poi: Make presubmit.py succeed
Browse files Browse the repository at this point in the history
Add apt-get update before apt-get install to
make presubmit.py succeed again.
  • Loading branch information
centic9 committed Dec 1, 2024
1 parent e12d8f4 commit 3f581b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/apache-poi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ WORKDIR ${SRC}
RUN git clone --depth 1 https://github.com/apache/poi.git

# install packages required for font-handling and other code in java.awt.*
RUN apt-get install -y libxext6 libx11-6 libxrender1 libxtst6 libxi6 libxcb1 libxau6 libxdmcp6 \
RUN apt-get update && apt-get install -y libxext6 libx11-6 libxrender1 libxtst6 libxi6 libxcb1 libxau6 libxdmcp6 \
&& apt-get clean autoclean \
&& apt-get autoremove --yes \
&& rm -rf /var/lib/{apt,dpkg,cache,log}/
Expand Down

0 comments on commit 3f581b2

Please sign in to comment.