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

lol

Update README.md
2025-10-27 23:56:51 -05: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" ]