From 9e2518b0eafee0b7349fae4eeffafedc0ed24e85 Mon Sep 17 00:00:00 2001
From: swee <meow@swee.codes>
Date: Tue, 11 Mar 2025 15:52:53 -0700
Subject: [PATCH] Update sweebot.py

---
 sweebot.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sweebot.py b/sweebot.py
index 4f29fde..b0fdff3 100644
--- a/sweebot.py
+++ b/sweebot.py
@@ -668,14 +668,14 @@ while True:
 
                     elif command[0] == "$dopull":
                         irc.send_irc(channel, nick + ":[...] Please wait, pulling docker image...")
-                        image = dock.images.pull('alpine')
+                        image = dock.images.pull('alpine/edge')
                         irc.send_irc(channel, nick + ":[OK] Pulled docker image, running command now.")
                     elif command[0] == "$doshell":
                         if len(command) > 1:
                             try:
                                 print("Running container")
                                 if cntr == None:
-                                    cntr = dock.containers.run('alpine', "/bin/ash", detach=True, tty=True)
+                                    cntr = dock.containers.run('alpine/edge', "/bin/ash", detach=True, tty=True)
                                 print("Executing...")
                                 _, stream = cntr.exec_run(cmd=" ".join(command[1:]))
                                 multiline(stream, channel)