Files
rmguess/Dockerfile
foreverpyrite 883e3234bf I'm so proud of this, if only I made it work on Windows...
sqach

lol

Update README.md

Update README.md
2025-10-28 13:00:48 +00:00

12 lines
330 B
Docker

# 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" ]