refactor(dockerfile): consolidate consecutive RUNs
All checks were successful
continuous-integration/drone/push Build is passing

.. to achieve faster builds
This commit is contained in:
surtur 2022-03-24 17:08:23 +01:00
parent caa4ee3f63
commit a478b7e689
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -15,15 +15,18 @@ LABEL org.label-schema.build-date=$BUILD_DATE \
ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz /tmp/hugo.tar.gz
WORKDIR /tmp/
RUN pacman -Syu --noconfirm --needed git
RUN pacman --noconfirm -Rn "$(pacman -Qdtq)" || true
RUN bsdtar xfv /tmp/hugo.tar.gz && rm -v /tmp/hugo.tar.gz README.md LICENSE \
&& chmod +x /tmp/hugo \
&& mkdir -pv /usr/local/bin \
&& mv -v /tmp/hugo /usr/local/bin/
RUN pacman -Scc && rm -rf /var/cache/pacman/* /var/lib/pacman/sync/* \
&& rm -rf /usr/share/zoneinfo/* ; \
rm -rf /usr/share/i18n/* ;rm -rf /usr/include/* ; \
find /. -name "*~" -type f -delete; \
find /usr/share/terminfo/. ! -name "*xterm*" ! -name "*screen*" ! -name "*screen*" -type f -delete
RUN pacman -Syu --noconfirm --needed git && \
pacman --noconfirm -Rn "$(pacman -Qdtq)" || true && \
\
bsdtar xfv /tmp/hugo.tar.gz && rm -v /tmp/hugo.tar.gz README.md LICENSE && \
chmod +x /tmp/hugo && \
mkdir -pv /usr/local/bin && \
mv -v /tmp/hugo /usr/local/bin/ && \
\
pacman -Scc && rm -rf /var/cache/pacman/* /var/lib/pacman/sync/* && \
rm -rf /usr/share/zoneinfo/*; \
rm -rf /usr/share/i18n/*; \
rm -rf /usr/include/*; \
find /. -name "*~" -type f -delete; \
find /usr/share/terminfo/. ! -name "*xterm*" ! -name "*screen*" ! -name "*screen*" -type f -delete
WORKDIR /