Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@LuRsT
Created September 19, 2015 10:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuRsT/113b0d30315bf49db80f to your computer and use it in GitHub Desktop.
Save LuRsT/113b0d30315bf49db80f to your computer and use it in GitHub Desktop.
Dockerfile for `hr`

How to run?

$ docker run  --rm --read-only --name hr hr hr 
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
@richdouglasevans
Copy link

I just built and ran this! It worked a treat. Good work Gil 👍

Here's an action shot, check it out! 😎

vagrant@vagrant-ubuntu-trusty-64:~/lurst$ docker run lurst-hr hr @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

Learned about the --rm flag, cheers!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment