12 lines
330 B
Docker
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" ]
|