-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python2 tools to python3, remove deprecated python2 packages
- Loading branch information
1 parent
fc46460
commit ea56445
Showing
92 changed files
with
3,716 additions
and
2,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN \ | ||
export DEBIAN_FRONTEND=noninteractive && \ | ||
export "LANG=en_US.UTF-8" && \ | ||
apt-get update && \ | ||
apt-get install -y wget gnupg && \ | ||
wget -O /usr/share/keyrings/salt-archive-keyring.gpg https://repo.saltproject.io/salt/py3/ubuntu/24.04/amd64/3006/SALT-PROJECT-GPG-PUBKEY-2023.gpg && \ | ||
echo "deb [signed-by=/usr/share/keyrings/salt-archive-keyring.gpg arch=amd64] https://repo.saltproject.io/salt/py3/ubuntu/24.04/amd64/3006 noble main" | tee /etc/apt/sources.list.d/saltstack.list && \ | ||
apt-get update && \ | ||
apt-get install -y salt-common && \ | ||
apt-get upgrade -y && \ | ||
mkdir -p /etc/salt && \ | ||
echo "file_client: local" > /etc/salt/minion && \ | ||
unset DEBIAN_FRONTEND |
Oops, something went wrong.