File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ RUN set -e; for pkg in $(go list ./...); do \
14
14
done
15
15
16
16
FROM ${base_image} AS resource
17
+ RUN apk update && apk upgrade
17
18
RUN apk add --no-cache bash tzdata ca-certificates git jq openssh
18
19
RUN git config --global user.email "git@localhost"
19
20
RUN git config --global user.name "git"
Original file line number Diff line number Diff line change @@ -14,9 +14,10 @@ RUN set -e; for pkg in $(go list ./...); do \
14
14
done
15
15
16
16
FROM ${base_image} AS resource
17
- RUN apt-get update \
17
+ RUN apt update && apt upgrade -y -o Dpkg::Options::="--force-confdef"
18
+ RUN apt update \
18
19
&& DEBIAN_FRONTEND=noninteractive \
19
- apt-get install -y --no-install-recommends \
20
+ apt install -y --no-install-recommends \
20
21
tzdata \
21
22
ca-certificates \
22
23
git \
You can’t perform that action at this time.
0 commit comments