Last active
August 13, 2024 08:10
-
-
Save maxweisspoker/6e772eb7f526a96a5f741c5af89262d6 to your computer and use it in GitHub Desktop.
Bash alias to print "Dockerfile" for image by using sed with "docker history"
This file contains 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
alias dockerfile='script.sh' | |
script.sh: | |
#!/bin/bash | |
echo "FROM scratch" | |
docker history --no-trunc $@ | tac | tr -s ' ' | cut -d " " -f 5- | sed 's,^/bin/sh -c #(nop) ,,g' | sed 's,^/bin/sh -c,RUN,g' | sed 's, && , \\\n & ,g' | sed 's,\s*[0-9]*[\.]*[0-9]*\s*[kMG]*B\s*$,,g' | head -n -1 | |
Example usage for Docker Hub image: | |
$ dockerfile myusername/myimage:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Taken from Stackoverflow of course:
https://stackoverflow.com/questions/19104847/how-to-generate-a-dockerfile-from-an-image