I'm so proud of this, if only I made it work on Windows...

sqach

lol

Update README.md
This commit is contained in:
foreverpyrite
2025-10-27 21:42:31 -05:00
commit 51a0879562
7 changed files with 314 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Safe option
FROM ubuntu:24.04
# I'm too lazy to make an actual builder
COPY ./rmguess /root/
WORKDIR /root/
RUN chmod +x ./rmguess && cp ./rmguess /usr/bin/
# In case people don't put the './' I guess
# Running bash once the rmguess command is finished so they can...play around if they want.
ENTRYPOINT [ "/bin/bash", "-i" ]