Skip to content

Commit

Permalink
Update python2 tools to python3, remove deprecated python2 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalsleuth committed Nov 6, 2024
1 parent fc46460 commit ea56445
Show file tree
Hide file tree
Showing 92 changed files with 3,716 additions and 2,090 deletions.
15 changes: 15 additions & 0 deletions Dockerfile.noble3006
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
Loading

0 comments on commit ea56445

Please sign in to comment.