File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ RUN set -e; \
2222
2323# stage: resource
2424FROM ${base_image} AS resource
25+ RUN apk update && apk upgrade
2526RUN apk --no-cache add \
2627 bash \
2728 docker \
Original file line number Diff line number Diff line change @@ -23,9 +23,10 @@ RUN set -e; \
2323# stage: resource
2424FROM ${base_image} AS resource
2525
26+ RUN apt update && apt upgrade -y -o Dpkg::Options::="--force-confdef"
2627# docker hosts their own packages, this steps sets up the repo for apt-get
27- RUN apt-get update; \
28- apt-get install -y --no-install-recommends \
28+ RUN apt update; \
29+ apt install -y --no-install-recommends \
2930 apt-transport-https \
3031 ca-certificates \
3132 curl \
@@ -37,7 +38,7 @@ RUN apt-get update; \
3738 $(lsb_release -cs) \
3839 stable" ;
3940
40- RUN apt-get update && apt-get install -y --no-install-recommends \
41+ RUN apt update && apt install -y --no-install-recommends \
4142 docker-ce \
4243 jq \
4344 ca-certificates \
You can’t perform that action at this time.
0 commit comments