File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3
3
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4
4
# -------------------------------------------------------------------------------------------------------------
5
5
6
- FROM python:3.7-buster
6
+ FROM python:3.9-bullseye
7
7
8
8
# Avoid warnings by switching to noninteractive
9
9
ENV DEBIAN_FRONTEND=noninteractive
@@ -30,7 +30,7 @@ RUN apt-get update \
30
30
# Install Docker CE CLI
31
31
&& apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
32
32
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]' )/gpg | (OUT=$(apt-key add - 2>&1) || echo $OUT) \
33
- && add-apt-repository "deb [arch=amd64 ] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
33
+ && add-apt-repository "deb [arch=$(dpkg --print-architecture) ] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
34
34
&& apt-get update \
35
35
&& apt-get install -y docker-ce-cli \
36
36
#
You can’t perform that action at this time.
0 commit comments