Skip to content

Instantly share code, notes, and snippets.

@dnhkng
Created December 4, 2021 13:12
Show Gist options
  • Save dnhkng/54caad1757854b849fa2c0707fc455d5 to your computer and use it in GitHub Desktop.
Save dnhkng/54caad1757854b849fa2c0707fc455d5 to your computer and use it in GitHub Desktop.
Ppython3.9 in Dockers
# avoid setting the timezone during installation in a docker
apt update
DEBIAN_FRONTEND="noninteractive"
TZ="Europe/Berlin"
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
apt install python3.9 -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment