Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency powershell/powershell to v7.4.6 - abandoned #119

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update python2 tools to python3, remove deprecated python2 packages
digitalsleuth committed Nov 6, 2024
commit ea564459955a9f88bb47440c04866670da23edcb
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