File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
RUN \
10
10
set -x && \
11
11
export DEBIAN_FRONTEND=noninteractive && \
12
- echo 'deb [arch=amd64] https://download.docker.com/linux/debian buster stable' > /etc/apt/sources.list.d/docker.list && \
12
+ echo 'deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable' > /etc/apt/sources.list.d/docker.list && \
13
13
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
14
14
apt-get update && \
15
15
apt-get dist-upgrade -y -o Dpkg::Options::="--force-confnew" && \
16
16
apt-get install -y -o Dpkg::Options::="--force-confnew" docker-ce && \
17
17
rm -rf /tmp/* && \
18
18
rm -rf /var/lib/apt/lists/* && \
19
- apt-get clean
19
+ apt-get clean
Original file line number Diff line number Diff line change 27
27
OWN_DIR=$( cd " $( dirname " $OWN " ) " && pwd -P)
28
28
29
29
# Ensure we have a fresh image to start with.
30
- docker image pull debian:buster
30
+ docker image pull debian:bullseye
31
31
32
32
# Build base image.
33
33
echo " Building base image."
You can’t perform that action at this time.
0 commit comments