From c7a835217c3f26cd30a794fa4145e618fb100265 Mon Sep 17 00:00:00 2001 From: Robert Wlodarczyk Date: Sat, 24 Jun 2023 14:39:30 -0700 Subject: [PATCH] chore: update and upgrade require the cache. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91263d5..d6155b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,8 +13,8 @@ ENV RQ_VERSION=1.0.2 WORKDIR /usr/bin/rq/ #hadolint ignore=DL3018 -RUN apk update --quiet --no-cache && \ - apk upgrade --quiet --no-cache && \ +RUN apk update --quiet && \ + apk upgrade --quiet && \ apk add --quiet --no-cache \ upx && \ rm /var/cache/apk/* && \ @@ -36,8 +36,8 @@ LABEL org.opencontainers.image.title="crontab" \ ENV HOME_DIR=/opt/crontab #hadolint ignore=DL3018 -RUN apk update --quiet --no-cache && \ - apk upgrade --quiet --no-cache && \ +RUN apk update --quiet && \ + apk upgrade --quiet && \ apk add --quiet --no-cache \ bash \ coreutils \