$ docker run --rm --read-only --name hr hr hr
Created
September 19, 2015 10:31
-
-
Save LuRsT/113b0d30315bf49db80f to your computer and use it in GitHub Desktop.
Dockerfile for `hr`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian | |
RUN apt-get update && apt-get install -y curl | |
RUN curl https://raw.githubusercontent.com/LuRsT/hr/master/hr > /bin/hr | |
RUN chmod +x /bin/hr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just built and ran this! It worked a treat. Good work Gil ๐
Here's an action shot, check it out! ๐
Learned about the
--rm
flag, cheers!